30 lines
477 B
Lua
30 lines
477 B
Lua
|
------------------------------------------------
|
||
|
--作者: gzg
|
||
|
--日期: 2019-03-25
|
||
|
--文件: MsgPromptSystem.lua
|
||
|
--模块: MsgPromptSystem
|
||
|
--描述: 提示系统
|
||
|
------------------------------------------------
|
||
|
--//模块定义
|
||
|
local MsgPromptSystem = {};
|
||
|
|
||
|
|
||
|
--//成员函数定义
|
||
|
--初始化
|
||
|
function MsgPromptSystem:Init()
|
||
|
|
||
|
end
|
||
|
|
||
|
--反初始化
|
||
|
function MsgPromptSystem:UnInit()
|
||
|
|
||
|
end
|
||
|
|
||
|
--更新心跳
|
||
|
function MsgPromptSystem:Update()
|
||
|
|
||
|
end
|
||
|
|
||
|
return MsgPromptSystem;
|
||
|
|