예제 #1
0
 public CampaignManager(int numberOfSections)
 {
     this.numberOfSections = numberOfSections;
     this.sections = new List<CampaignSection>(numberOfSections);
     this.currentSection = 0;
     this.endteleporter = null;
 }
예제 #2
0
 public void SetTeleport(Teleporter teleporter)
 {
     endteleporter = teleporter;
 }