Engine 0.0.4
Game engine in lua
Loading...
Searching...
No Matches
application.lua
Go to the documentation of this file.
1--! @file src/lib/object/application.lua
2--! @short application object
3--! @brief metatags, configs and code.
4
5local P = {
6 meta={
7 id='',
8 title='',
9 author='',
10 company='',
11 description='',
12 version=''
13 },
14 config = {
15 fps_max = 100,
16 fps_show = 0,
17 fps_drop = 2,
18 fps_time = 1
19 },
20 callbacks={
21 init=function () end,
22 loop=function () end,
23 draw=function () end,
24 exit=function () end
25 }
26}
27
28return P;
local function file(self, file)
local function exit(self)
local application
Definition main.lua:16
local function draw(std, game)
local function init(std, game)
local function loop(std, game)