package edu.chl.hajo.monopoly.core.card; /** * Not implemented yet * @author hajo */ public class PayCard extends Card { private final int amount; public PayCard(String name, String message, int amount) { super(name, message); this.amount = amount; } @Override public void execute() { } }