// Class Plate
// - a specific type of a Dish
// - it's a bit easier to extract than a Bowl

import Dish;
import Difficulty;

class Plate extends Dish {
    protected void setRetrievability() {
	retrievability += Difficulty.easy*size;
    }
} // Class Plate
