26 lines
421 B
Lua
26 lines
421 B
Lua
---
|
|
--- Created by 谌建军.
|
|
--- DateTime: 2017/12/19 14:36
|
|
---
|
|
local TwoDouDiZhu_Player = import(".TwoDouDiZhu_Player")
|
|
|
|
local TwoDouDiZhu_Room = {
|
|
}
|
|
|
|
local M = TwoDouDiZhu_Room
|
|
|
|
--- Create a new EXPlayer
|
|
function M.new()
|
|
setmetatable(M,{__index = Room})
|
|
local self = setmetatable({}, {__index = M})
|
|
self:init()
|
|
return self
|
|
end
|
|
|
|
|
|
|
|
function M:NewPlayer()
|
|
return TwoDouDiZhu_Player.new()
|
|
end
|
|
|
|
return M |