25 lines
395 B
Lua
25 lines
395 B
Lua
---
|
|
--- Created by 谌建军.
|
|
--- DateTime: 2017/12/19 14:36
|
|
---
|
|
local SuoHa_Player = import(".SuoHa_Player")
|
|
|
|
local SuoHa_Room = {
|
|
}
|
|
|
|
local M = SuoHa_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 SuoHa_Player.new()
|
|
end
|
|
|
|
return M
|