mirror of
https://github.com/Leonmmcoset/CMLeonOS.git
synced 2026-03-03 15:30:27 +00:00
33 lines
473 B
C#
33 lines
473 B
C#
|
|
|
||
|
|
namespace UniLua
|
||
|
|
{
|
||
|
|
using System.Diagnostics;
|
||
|
|
|
||
|
|
internal class LuaOSLib
|
||
|
|
{
|
||
|
|
public const string LIB_NAME = "os";
|
||
|
|
|
||
|
|
public static int OpenLib( ILuaState lua )
|
||
|
|
{
|
||
|
|
NameFuncPair[] define = new NameFuncPair[]
|
||
|
|
{
|
||
|
|
#if !UNITY_WEBPLAYER
|
||
|
|
new NameFuncPair("clock", OS_Clock),
|
||
|
|
#endif
|
||
|
|
};
|
||
|
|
|
||
|
|
lua.L_NewLib( define );
|
||
|
|
return 1;
|
||
|
|
}
|
||
|
|
|
||
|
|
#if !UNITY_WEBPLAYER
|
||
|
|
private static int OS_Clock( ILuaState lua )
|
||
|
|
{
|
||
|
|
lua.PushNumber(0); //TO PLUG
|
||
|
|
return 1;
|
||
|
|
}
|
||
|
|
#endif
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|