mirror of
https://github.com/copyrighttxt/watrbx-game-engine.git
synced 2026-09-04 20:57:49 +00:00
25 lines
668 B
C++
25 lines
668 B
C++
#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);
|
|
};
|
|
|
|
}
|
|
}
|