--结算数据对象 local m = class("RoomResult") function m:ctor() -- 房间ID self.RoomID = 0 -- 结果类型 self.Type = RoomResultType.Normal -- 庄家 self.BankerSeat = 0 -- 剩余牌数 self.LeftNum = 0 -- 当前局 self.CurrenRound = 0 -- 总局 self.ToalRound = 0 -- 玩家列表 -- list.new() self.PlayerList = {} end return m