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