Esempio n. 1
0
 public Game()
 {
     Gang            = new Gang();
     Police          = new Police();
     DailyActivities = new List <ActivityLog>();
     Day             = 1;
 }
Esempio n. 2
0
 public bool CanAffectGang(Gang gang)
 {
     return((AffectsMembers && gang.Members.Count > 1) ||
            (AffectsInfrastructure && gang.Properties.Any()));
 }