18 lines
196 B
Lua
18 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
|