Ejemplo n.º 1
0
    private static int GetScreenSize(IntPtr L)
    {
        int result;

        try
        {
            ToLua.CheckArgsCount(L, 1);
            PlatformUtil platformUtil = (PlatformUtil)ToLua.CheckObject(L, 1, typeof(PlatformUtil));
            string       screenSize   = platformUtil.GetScreenSize();
            LuaDLL.lua_pushstring(L, screenSize);
            result = 1;
        }
        catch (Exception e)
        {
            result = LuaDLL.toluaL_exception(L, e, null);
        }
        return(result);
    }