feat: implemented conclusion_received signal

This commit is contained in:
Sara Gerretsen 2025-11-04 13:30:31 +01:00
parent 40631f5be1
commit 534b527f61
4 changed files with 36 additions and 2 deletions

View file

@ -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