예제 #1
0
파일: Lua.cs 프로젝트: nobitagamer/NLua
		private void OnHookException (HookExceptionEventArgs e)
		{
			var temp = HookException;
			if (temp != null)
				temp (this, e);
		}
예제 #2
0
		void OnLuaException(object sender, HookExceptionEventArgs e)
		{
			ShowException(e.Exception);
		}
예제 #3
0
파일: Lua.cs 프로젝트: Azhei/NLua
		private void OnHookException (HookExceptionEventArgs e)
		{
			var temp = HookException;
			if (!temp.IsNull ())
				temp (this, e);
		}