#pragma once #include "core/string/ustring.h" #include "you_done_it/ydi_networking.h" namespace ydi::client { void connect(String const &url); void disconnect(); NetworkData::ConnectionStatus status(); namespace receive { Vector &conclusion(); } namespace send { void reveal_clue(NetworkData::ClueID id); } //namespace send } //namespace ydi::client