rename test library to app & rename app.name to app.script

This commit is contained in:
MihailRis
2024-12-25 06:06:55 +03:00
parent deb85ba2d8
commit ad6a6666da
7 changed files with 35 additions and 35 deletions
+1 -1
View File
@@ -37,7 +37,7 @@ extern const luaL_Reg packlib[];
extern const luaL_Reg particleslib[]; // gfx.particles
extern const luaL_Reg playerlib[];
extern const luaL_Reg quatlib[];
extern const luaL_Reg testlib[];
extern const luaL_Reg applib[];
extern const luaL_Reg text3dlib[]; // gfx.text3d
extern const luaL_Reg timelib[];
extern const luaL_Reg tomllib[];
@@ -1,5 +1,5 @@
#include "api_lua.hpp"
const luaL_Reg testlib[] = {
const luaL_Reg applib[] = {
{NULL, NULL}
};