58 virtual bool LoadPlugin(
const char* name);
59 virtual void LoadPluginCritical(
const char* name);
64 virtual Display GetMainDisplay();
65 virtual uint8_t CountDisplays();
66 virtual void EnumerateDisplays(
Display* displays);
67 virtual void RegisterSystem(
const char* name, ECS::SystemFactory factory);
68 virtual void RegisterEditorSystem(
const char* name, ECS::SystemFactory factory);
69 virtual void UnregisterSystem(
const char* name);
70 virtual void UnregisterEditorSystem(
const char* name);
73 virtual void RegisterAssetType(AssetType assetType,
const char* typeName,
AssetImporter* assetImporter);
74 virtual void UnregisterAssetType(AssetType assetType);
75 virtual void SetReloadCsharpCallback(std::function<
void()> callback);
79 template<
typename ClassType>
80 void RegisterComponent(Grindstone::ECS::SetupComponentFn setupComponentFn =
nullptr, Grindstone::ECS::DestroyComponentFn destroyComponentFn =
nullptr) {
81 componentRegistrar->RegisterComponent<ClassType>(setupComponentFn, destroyComponentFn);
85 void UnregisterComponent() {
86 componentRegistrar->UnregisterComponent<T>();
98 uint8_t (*countDisplaysFn)() =
nullptr;