mirror of
https://github.com/copyrighttxt/watrbx-game-engine.git
synced 2026-09-04 20:57:49 +00:00
23 lines
386 B
C++
23 lines
386 B
C++
#pragma once
|
|
|
|
#include "Item.h"
|
|
#include "Replicator.h"
|
|
|
|
#include "RakNetTime.h"
|
|
|
|
namespace RBX {
|
|
namespace Network {
|
|
|
|
class Replicator::PingBackItem : public PooledItem
|
|
{
|
|
RakNet::Time time;
|
|
unsigned int extraStats;
|
|
public:
|
|
PingBackItem(Replicator* replicator, RakNet::Time time, unsigned int extraStats);
|
|
|
|
/*implement*/ virtual bool write(RakNet::BitStream& bitStream);
|
|
};
|
|
|
|
}
|
|
}
|