Esempio n. 1
0
 public LuaFunction(LuaCSFunction function, Lua interpreter)
 {
     this.reference   = 0;
     this.function    = function;
     this.interpreter = interpreter;
     interpreter.addLuaFunction(this);
 }
Esempio n. 2
0
File: Lua.cs Progetto: viticm/pap2
		public LuaFunction(LuaCSFunction function, Lua interpreter) 
		{
			this.reference=0;
            this.function=function;
			this.interpreter=interpreter;
            interpreter.addLuaFunction(this);
		}