Refact UI and SDF font managment

This commit is contained in:
Antoine Pilote
2021-06-04 14:31:16 -04:00
parent 94ebaedf43
commit 49cfe9e421
26 changed files with 97 additions and 33 deletions

View File

@@ -0,0 +1,10 @@
#include "HelloWorld.h"
int ScriptingAPI::HelloWorld(lua_State* L)
{
return 1; // Successful
}

View File

@@ -0,0 +1,6 @@
#pragma once
struct lua_State;
namespace ScriptingAPI
{
int HelloWorld(lua_State* L);
}