Lua script

This commit is contained in:
2026-02-28 00:19:25 +03:00
parent 5434239b47
commit 2815369bb8
8 changed files with 202 additions and 7 deletions

View File

@@ -1,8 +1,13 @@
-- Game initialization script
-- загружаем скрипты
load_script("game_object.lua")
-- глобальная таблица сущностей
g_entity_table = {
-- Lua class -- CPP class -- Description
{ "actor_player", "ActorBase", "Player actor entity" }
{ "game_object", "Entity", "Test Lua Entity" }
}