14 lines
141 B
Lua
14 lines
141 B
Lua
local __Entity = {
|
|
sprite = {},
|
|
position = Vec3 {},
|
|
velocity = Vec3 {}
|
|
}
|
|
|
|
function __Entity:update()
|
|
|
|
end
|
|
|
|
local __Sprite = {
|
|
|
|
}
|