b2fe9e62cd
Fix #7
17 lines
196 B
Lua
17 lines
196 B
Lua
local actions = {}
|
|
|
|
actions.aerial = {}
|
|
|
|
function actions.aerial.start(n, actor)
|
|
|
|
end
|
|
|
|
function actions.aerial.update(dt, actor)
|
|
|
|
end
|
|
|
|
function actions.aerial.onGround(actor)
|
|
|
|
end
|
|
|
|
return actions
|