Beispiel #1
0
 public void copy_actors_to(Game_Actors target, Battalion battalion = null)
 {
     foreach (var pair in battalion == null ? actors : actors.Where(x => battalion.actors.Contains(x.Key)))
     {
         target.actors[pair.Key] = pair.Value;
     }
 }
Beispiel #2
0
 // Should happen automatically from called methods //Debug
 public static void new_game_actors()
 {
     Game_Actors = new Game_Actors();
 }