Example #1
0
 public campCharCampaign(campCampaign camp, hostChar ch, bool bApproved) : this()
 {
     this.Campaign  = camp;
     this.Character = ch;
     this.Approved  = bApproved;
 }
 public campAdventure(string n, string nl, string desc, campCampaign camp, DateTime dt)
     : this(n, nl)
 {
     this.Description = desc;
     this.Campaign    = camp;
 }