Engine 0.0.4
Game engine in lua
Loading...
Searching...
No Matches
game.lua
Go to the documentation of this file.
1--! @file src/lib/object/game.lua
2--! @short game object
3--! @brief a table to put anything related to developer game.
4
5local P = {
6 dt = 0,
7 fps = 0,
8 milis = 0,
9 width = 0,
10 height = 0
11}
12
13return P;
local function file(self, file)
local function fps(self, show, x, y)
local game
Definition main.lua:17