diff --git a/SquirrelFileConfig.cfg b/SquirrelFileConfig.cfg index 61d795e..f12c885 100644 --- a/SquirrelFileConfig.cfg +++ b/SquirrelFileConfig.cfg @@ -12,5 +12,5 @@ Game/CharacterScript/Common/Rest.nut Game/CharacterScript/Common/Move.nut -UI/asd.nut +UI/MainUI.nut main.nut \ No newline at end of file diff --git a/UI/MainUI.nut b/UI/MainUI.nut new file mode 100644 index 0000000..a9dbae6 --- /dev/null +++ b/UI/MainUI.nut @@ -0,0 +1,22 @@ +/* +文件名:MainUI.nut +路径:UI/MainUI.nut +创建日期:2025-10-11 11:21 +文件用途:主界面UI +*/ +//主界面UI初始化回调 +function _MainUI_Enter_() +{ +} +//主界面UI事件回调 +function _MainUI_HandleEvents_(event) +{ +} +//主界面UI更新回调 +function _MainUI_Update_(deltaTime) +{ +} +//主界面UI退出回调 +function _MainUI_Exit_() +{ +} \ No newline at end of file diff --git a/UI/asd.nut b/UI/asd.nut deleted file mode 100644 index e69de29..0000000 diff --git a/folder-alias.json b/folder-alias.json index a8f24bf..ef8839c 100644 --- a/folder-alias.json +++ b/folder-alias.json @@ -28,5 +28,8 @@ }, "Game/ObjectClass/CharacterObject.nut": { "description": "角色对象" + }, + "UI/MainUI.nut": { + "description": "UI入口" } } \ No newline at end of file