DOF/sqr/User/_ENUM/global_object.nut

19 lines
457 B
Plaintext
Raw Normal View History

2024-12-19 23:55:07 +08:00
/*
文件名:global_object.nut
路径:User/_ENUM/global_object.nut
创建日期:2024-12-18 19:03
文件用途:全局对象
*/
2025-02-20 13:53:36 +08:00
//客户端聊天窗口
ClientChatWindow <- null;
2024-12-19 23:55:07 +08:00
//客户端角色对象
2025-01-11 23:58:10 +08:00
ClientCharacter <- null;
//客户端角色的背包
2025-02-20 13:53:36 +08:00
ClientCharacterInventory <- null;
//客户端角色的个人信息
ClientPersonalInfo <- null;
//客户端角色的HUD
ClientHUD <- null;
//客户端角色的技能树窗口
ClientSkillTreeWindow <- null;