public void applay(Shot shot, World world, Monster monster) { aspectType.GetMethod("applay").Invoke(null, new object[] { amount, shot, world, monster }); }
private void shoot(Monster m) { Shot s = new Shot(m, this); Game.world.shots.Add(s); }