示例#1
0
 public void applay(Shot shot, World world, Monster monster)
 {
     aspectType.GetMethod("applay").Invoke(null, new object[] { amount, shot, world, monster });
 }
示例#2
0
        private void shoot(Monster m)
        {
            Shot s = new Shot(m, this);

            Game.world.shots.Add(s);
        }