13 lines
109 B
Lua
13 lines
109 B
Lua
|
|
Room = class("Room")
|
||
|
|
|
||
|
|
function Room:initialize()
|
||
|
|
|
||
|
|
end
|
||
|
|
|
||
|
|
function Room:draw()
|
||
|
|
|
||
|
|
end
|
||
|
|
|
||
|
|
function Room:update()
|
||
|
|
|
||
|
|
end
|