Пример #1
0
 private void Tags_TagsEdited(ZoneTagList sender)
 {
     if (TagsEdited != null)
     {
         this.TagsEdited(this);
     }
 }
Пример #2
0
 private void Tags_TagsEdited(ZoneTagList sender)
 {
     if (this.TagsEdited != null)
     {
         FrostbiteConnection.RaiseEvent(this.TagsEdited.GetInvocationList(), this);
     }
 }
Пример #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);
        }
Пример #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);
        }
Пример #5
0
 public MapZone(string strLevelFileName)
 {
     LevelFileName = strLevelFileName;
     Tags          = new ZoneTagList();
 }
Пример #6
0
 public MapZone(string strLevelFileName)
 {
     this.LevelFileName = strLevelFileName;
     this.Tags          = new ZoneTagList();
 }