init
This commit is contained in:
17
src/solanaceae/tox_p2prng/tox_p2prng.cpp
Normal file
17
src/solanaceae/tox_p2prng/tox_p2prng.cpp
Normal file
@@ -0,0 +1,17 @@
|
||||
#include "./tox_p2prng.hpp"
|
||||
|
||||
|
||||
ToxP2PRNG::ToxP2PRNG(ToxContactModel2& tcm) : _tcm(tcm) {
|
||||
}
|
||||
|
||||
ToxP2PRNG::~ToxP2PRNG(void) {
|
||||
}
|
||||
|
||||
std::vector<uint8_t> ToxP2PRNG::newGernation(Contact3Handle c, const ByteSpan initial_state_user_data) {
|
||||
return {};
|
||||
}
|
||||
|
||||
std::vector<uint8_t> newGernationPeers(const std::vector<Contact3Handle>& c_vec, const ByteSpan initial_state_user_data) {
|
||||
return {};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user