Pathfinding.Path.GetHTarget C# (CSharp) Method

GetHTarget() public method

public GetHTarget ( ) : Int3
return Int3
		public Int3 GetHTarget () {
			return hTarget;
		}

Usage Example

 static int GetHTarget(IntPtr L)
 {
     try
     {
         ToLua.CheckArgsCount(L, 1);
         Pathfinding.Path obj = (Pathfinding.Path)ToLua.CheckObject <Pathfinding.Path>(L, 1);
         Pathfinding.Int3 o   = obj.GetHTarget();
         ToLua.PushValue(L, o);
         return(1);
     }
     catch (Exception e)
     {
         return(LuaDLL.toluaL_exception(L, e));
     }
 }