15 lines
298 B
C++
15 lines
298 B
C++
#pragma once
|
|
|
|
#include "core/templates/vector.h"
|
|
#include "you_done_it/ydi_networking.h"
|
|
#include <cassert>
|
|
|
|
namespace ydi::server {
|
|
void open();
|
|
void close();
|
|
bool has_client();
|
|
|
|
namespace receive {
|
|
bool new_clues(Vector<NetworkData::ClueID> &out);
|
|
} //namespace receive
|
|
} //namespace ydi::server
|