Example #1
0
 internal Guild(string name, string about, ClanPlatform clanPlatform, int identifier) : base(identifier)
 {
     _name         = name;
     _about        = about;
     _clanPlatform = clanPlatform;
 }
Example #2
0
 public Clan(string name, string about, ClanPlatform clanPlatform, IList <Member> members, int identifier) : base(identifier: identifier, name: name, about: about, clanPlatform: clanPlatform)
 {
     _members = members;
 }