コード例 #1
0
 public void Handle(ICollidable object1, ICollidable object2, CollisionDirection.DirectionTag direction)
 {
     if (typeof(IMario).IsInstanceOfType(object1) && typeof(BrownMushroom).IsInstanceOfType(object2))
     {
         this.player        = (IMario)object1;
         this.brownMushroom = (BrownMushroom)object2;
         //Mario should become big//
         player.CollectBrownMushroom();
         //BrownMushroom disappear//
         this.brownMushroom.Collect();
     }
 }