<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">// 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
</pre></body></html>