13 lines
296 B
C++
13 lines
296 B
C++
#pragma once
|
|
|
|
#include "ydi_networking.h"
|
|
#include <core/string/ustring.h>
|
|
|
|
namespace ydi::client {
|
|
void connect(String const &url);
|
|
void disconnect();
|
|
NetworkData::ConnectionStatus status();
|
|
namespace send {
|
|
void reveal_clue(NetworkData::ClueID id);
|
|
} //namespace send
|
|
} //namespace ydi::client
|