11 lines
128 B
Lua
11 lines
128 B
Lua
|
Planet = Object.extend(Object)
|
||
|
|
||
|
function Planet:new()
|
||
|
end
|
||
|
|
||
|
function Planet:update(dt)
|
||
|
end
|
||
|
|
||
|
function Planet:draw()
|
||
|
end
|