LuaBox
Loading...
Searching...
No Matches
Millis.h
Go to the documentation of this file.
1#pragma once
2
3#include "lua_include.h"
4#include "global.h"
5
11
12int Millis(lua_State* L_)
13{
14 lua_pushinteger(L_, millis());
15 return 1;
16}
int Millis(lua_State *L_)
Get the current system time in milliseconds.
Definition Millis.h:12