Ejemplo n.º 1
0
        private static bool AreVehiclesAllowed()
        {
            IntPtr pPlayfield = N3EngineClient_t.GetPlayfield();

            if (pPlayfield == IntPtr.Zero)
            {
                return(false);
            }

            return(PlayfieldAnarchy_t.AreVehiclesAllowed(pPlayfield));
        }
Ejemplo n.º 2
0
        private static bool IsShadowlandPF()
        {
            IntPtr pPlayfield = N3EngineClient_t.GetPlayfield();

            if (pPlayfield == IntPtr.Zero)
            {
                return(false);
            }

            return(PlayfieldAnarchy_t.IsShadowlandPF(pPlayfield));
        }
Ejemplo n.º 3
0
 public Vector3 GetSafePos()
 {
     return(PlayfieldAnarchy_t.GetSafePos(_pointer));
 }
Ejemplo n.º 4
0
 public bool IsGrid()
 {
     return(PlayfieldAnarchy_t.IsGrid(_pointer));
 }
Ejemplo n.º 5
0
 public int GetPFWorldZPos()
 {
     return(PlayfieldAnarchy_t.GetPFWorldZPos(_pointer));
 }
Ejemplo n.º 6
0
 public LandControlMap GetLandControlMap()
 {
     return(new LandControlMap(PlayfieldAnarchy_t.GetLandControlMap(_pointer)));
 }
Ejemplo n.º 7
0
 public PlayfieldDistrictInfo GetDistrictInfo()
 {
     return(new PlayfieldDistrictInfo(PlayfieldAnarchy_t.GetDistrictInfo(_pointer)));
 }
Ejemplo n.º 8
0
 public bool AreVehiclesAllowed()
 {
     return(PlayfieldAnarchy_t.AreVehiclesAllowed(_pointer));
 }
Ejemplo n.º 9
0
 public bool IsShadowlandPF()
 {
     return(PlayfieldAnarchy_t.IsShadowlandPF(_pointer));
 }