Example #1
0
    internal void CollectibleHit(int lastPlayerHit, P1Controller.ItemType itemType)
    {
        switch (lastPlayerHit)
        {
        case 1:
            p1Controller.collectItem(itemType);
            break;

        case 2:
            p2Controller.collectItem(itemType);
            break;

        default:
            break;
        }
    }
Example #2
0
 internal void collectItem(P1Controller.ItemType itemType)
 {
 }