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