Example #1
0
        public void AddChapter(Chapter_Info Chapter)
        {
            Chapter.OffX = X;
            Chapter.OffY = Y;

            ChapterSpawns.Add(Chapter);
        }
Example #2
0
 public ChapterObject(Chapter_Info Info)
     : this()
 {
     this.Info = Info;
     Name = Info.Name;
 }
Example #3
0
 public ChapterObject CreateChapter(Chapter_Info Chapter)
 {
     ChapterObject Obj = new ChapterObject(Chapter);
     AddObject(Obj, Chapter.ZoneId);
     return Obj;
 }