mirror of
https://github.com/copyrighttxt/watrbx-game-engine.git
synced 2026-09-04 20:57:49 +00:00
21 lines
423 B
C++
21 lines
423 B
C++
#pragma once
|
|
|
|
#include "V8Tree/Service.h"
|
|
|
|
namespace RBX {
|
|
|
|
namespace Network {
|
|
|
|
extern const char* const sGuidRegistryService;
|
|
class GuidRegistryService
|
|
: public DescribedNonCreatable<GuidRegistryService, Instance, sGuidRegistryService>
|
|
, public Service
|
|
{
|
|
public:
|
|
boost::intrusive_ptr<GuidItem<Instance>::Registry> const registry;
|
|
GuidRegistryService(void);
|
|
~GuidRegistryService(void);
|
|
};
|
|
}
|
|
}
|