mirror of
https://github.com/copyrighttxt/watrbx-game-engine.git
synced 2026-09-06 05:37:48 +00:00
GEEKING
This commit is contained in:
@@ -0,0 +1,24 @@
|
||||
#pragma once
|
||||
|
||||
#include "Item.h"
|
||||
#include "Replicator.h"
|
||||
#include "Util/ProgramMemoryChecker.h"
|
||||
|
||||
namespace RBX {
|
||||
namespace Network {
|
||||
|
||||
class Replicator::HashItem : public Item
|
||||
{
|
||||
PmcHashContainer hashes;
|
||||
unsigned long long fuzzyToken;
|
||||
unsigned long long apiToken;
|
||||
unsigned long long prevApiToken;
|
||||
public:
|
||||
HashItem(Replicator* replicator, const PmcHashContainer* const hashes, unsigned long long fuzzyToken,
|
||||
unsigned long long apiToken, unsigned long long prevApiToken);
|
||||
|
||||
/*implement*/ virtual bool write(RakNet::BitStream& bitStream);
|
||||
};
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user