public void AddChapter(Chapter_Info Chapter) { Chapter.OffX = X; Chapter.OffY = Y; ChapterSpawns.Add(Chapter); }
public ChapterObject(Chapter_Info Info) : this() { this.Info = Info; Name = Info.Name; }
public ChapterObject CreateChapter(Chapter_Info Chapter) { ChapterObject Obj = new ChapterObject(Chapter); AddObject(Obj, Chapter.ZoneId); return Obj; }