mirror of
https://github.com/copyrighttxt/watrbx-game-engine.git
synced 2026-09-04 20:57:49 +00:00
15 lines
253 B
C++
15 lines
253 B
C++
#pragma once
|
|
|
|
#include "V8Tree/Instance.h"
|
|
#include "V8Tree/Service.h"
|
|
|
|
namespace RBX
|
|
{
|
|
extern const char* const sScriptService;
|
|
class ScriptService
|
|
: public DescribedNonCreatable<ScriptService, Instance, sScriptService>
|
|
, public Service
|
|
{
|
|
};
|
|
}
|