Esempio n. 1
0
 private void Tags_TagsEdited(ZoneTagList sender)
 {
     if (TagsEdited != null)
     {
         this.TagsEdited(this);
     }
 }
Esempio n. 2
0
 private void Tags_TagsEdited(ZoneTagList sender)
 {
     if (this.TagsEdited != null)
     {
         FrostbiteConnection.RaiseEvent(this.TagsEdited.GetInvocationList(), this);
     }
 }
Esempio n. 3
0
        public MapZone(string strUid, string strLevelFileName, string strTagList, Point3D[] zonePolygon, bool blInclusive)
        {
            LevelFileName = strLevelFileName;
            UID           = strUid;
            ZonePolygon   = zonePolygon;
            ZoneInclusive = blInclusive;

            Tags = new ZoneTagList(strTagList);
        }
Esempio n. 4
0
        public MapZone(string strUid, string strLevelFileName, string strTagList, Point3D[] a_pntZonePolygon, bool blInclusive)
        {
            this.LevelFileName = strLevelFileName;
            this.UID           = strUid;
            this.ZonePolygon   = a_pntZonePolygon;
            this.ZoneInclusive = blInclusive;

            this.Tags = new ZoneTagList(strTagList);
        }
Esempio n. 5
0
 public MapZone(string strLevelFileName)
 {
     LevelFileName = strLevelFileName;
     Tags          = new ZoneTagList();
 }
Esempio n. 6
0
 public MapZone(string strLevelFileName)
 {
     this.LevelFileName = strLevelFileName;
     this.Tags          = new ZoneTagList();
 }