mirror of
https://github.com/copyrighttxt/watrbx-game-engine.git
synced 2026-09-07 22:07:48 +00:00
GEEKING
This commit is contained in:
@@ -0,0 +1,24 @@
|
||||
#pragma once
|
||||
|
||||
#include "V8Tree/Instance.h"
|
||||
|
||||
namespace RBX {
|
||||
namespace Network {
|
||||
|
||||
extern const char* const sMarker;
|
||||
|
||||
class Marker
|
||||
: public RBX::DescribedNonCreatable<Marker, Instance, sMarker>
|
||||
{
|
||||
bool returned; // == the marker has made the round-trip
|
||||
public:
|
||||
Marker();
|
||||
const long id;
|
||||
rbx::signal<void()> receivedSignal;
|
||||
void fireReturned();
|
||||
};
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user