mirror of
https://github.com/copyrighttxt/watrbx-game-engine.git
synced 2026-09-04 20:57:49 +00:00
18 lines
320 B
C++
18 lines
320 B
C++
#pragma once
|
|
|
|
#include "V8Tree/Service.h"
|
|
|
|
namespace RBX {
|
|
|
|
extern const char* const sReplicatedStorage;
|
|
|
|
class ReplicatedStorage
|
|
: public DescribedCreatable<ReplicatedStorage, Instance, sReplicatedStorage, Reflection::ClassDescriptor::PERSISTENT_HIDDEN>
|
|
, public Service
|
|
{
|
|
public:
|
|
ReplicatedStorage();
|
|
};
|
|
|
|
}
|