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
---@meta

---@enum MouseButton
local MouseButton = {
    LEFT = 0,
    RIGHT = 1,
    MIDDLE = 2,
}

return MouseButton