kero 0.1.6

A simple, approachable framework for creating 2D games in Rust and/or Lua.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
---@meta

---@enum GamepadAxis
local GamepadAxis = {
    LEFT_X = 0,
    LEFT_Y = 1,
    RIGHT_X = 2,
    RIGHT_Y = 3,
    DPAD_X = 6,
    DPAD_Y = 7,
}

return GamepadAxis