package edu.mit.roborace;

/** This is the base class for all option cards.
    Specific option cards will override various methods depending on
    their functionality.

    WARNING: This class is not completely implemented.  It will have more
    method stubs.

    @author Matthew Gray <mkgray@mit.edu> and Chris Shabsin <shabby@mit.edu>
 */

public class OptionCard {
    /** Modify the effects of a movement card.
	For example, the "Fourth Gear" option would potentially turn
	a "Move 3" card into a "Move 4" card (at the players option)
    */
    public void moveMunge(Card c){
    }
}
