Esempio n. 1
0
 public TestMultiSystem(Scene scene) : base(scene, new Matcher().all(typeof(Player)))
 {
     enemies = InjectEntityMatcher(new Matcher().all(typeof(Enemy)));
 }
Esempio n. 2
0
 public EnemySpawnSystem(Scene scene) : base(scene, new Matcher().all(typeof(EnemySpawn)))
 {
     _enemies = InjectEntityMatcher(new Matcher().all(typeof(Enemy)));
 }