You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- local ZPDef = ZPFramework.ZPImport("zp_base.luaScript.ZPDef")
- local ZPMessage = ZPFramework.ZPImport("zp_base.luaScript.Protocol.ZPMessage")
-
- local ZPRoomToolView = ZPFramework.ZPFrameworkClassImprot("zp_base.luaScript.Views.Room.ZPRoomToolView")
- local hejiangRoomToolView = class("hejiangRoomToolView", ZPRoomToolView)
-
- function hejiangRoomToolView:ctor( ... )
- hejiangRoomToolView.super.ctor(self)
- end
-
- function hejiangRoomToolView:onEnter()
- hejiangRoomToolView.super.onEnter(self)
- --self:showFastStart(false)
- end
-
- return hejiangRoomToolView
|