Changed action cards logic. x7

This commit is contained in:
Michael Wain 2025-04-12 04:40:26 +03:00
parent 2c8051ef00
commit 9d4dd65af0

View File

@ -6,12 +6,17 @@ import lombok.AllArgsConstructor;
import lombok.NoArgsConstructor;
@AllArgsConstructor
@NoArgsConstructor
public abstract class ActionCard {
BunkerBot bot;
Player activator;
public ActionCard(BunkerBot bot, Player activator) {
this.bot = bot;
this.activator = activator;
}
public abstract void execute();
public abstract String getName();