feat: implemented conclusion_received signal
This commit is contained in:
parent
40631f5be1
commit
534b527f61
4 changed files with 36 additions and 2 deletions
|
|
@ -1,6 +1,7 @@
|
|||
#pragma once
|
||||
|
||||
#include "core/string/ustring.h"
|
||||
#include "core/templates/fixed_vector.h"
|
||||
#include "you_done_it/ydi_networking.h"
|
||||
|
||||
namespace ydi::client {
|
||||
|
|
@ -8,8 +9,9 @@ void connect(String const &url);
|
|||
void disconnect();
|
||||
NetworkData::ConnectionStatus status();
|
||||
namespace receive {
|
||||
Vector<NetworkData::ClueID> &conclusion();
|
||||
}
|
||||
FixedVector<NetworkData::ClueID, 3> &conclusion();
|
||||
bool has_conclusion();
|
||||
} //namespace receive
|
||||
namespace send {
|
||||
void reveal_clue(NetworkData::ClueID id);
|
||||
} //namespace send
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue