11 lines
98 B
Lua
11 lines
98 B
Lua
|
|
local input = {}
|
||
|
|
|
||
|
|
function input:handler()
|
||
|
|
|
||
|
|
end
|
||
|
|
|
||
|
|
function input:moveIsPressed()
|
||
|
|
|
||
|
|
end
|
||
|
|
|
||
|
|
return input
|