This commit is contained in:
Daniel Grigencha
2024-12-06 02:38:53 +01:00
5 changed files with 14 additions and 0 deletions

View File

@@ -1,11 +1,13 @@
package pp.mdga.game.card;
import com.jme3.network.serializing.Serializable;
import pp.mdga.game.BonusCard;
import pp.mdga.visitor.Visitor;
/**
* This class represents the hidden power card of this application.
*/
@Serializable
public class HiddenCard extends PowerCard {
/**
* Constructor.

View File

@@ -1,11 +1,13 @@
package pp.mdga.game.card;
import com.jme3.network.serializing.Serializable;
import pp.mdga.game.BonusCard;
import pp.mdga.visitor.Visitor;
/**
* This class represents the shield power card of this application.
*/
@Serializable
public class ShieldCard extends PowerCard {
/**
* Constructor.

View File

@@ -1,11 +1,13 @@
package pp.mdga.game.card;
import com.jme3.network.serializing.Serializable;
import pp.mdga.game.BonusCard;
import pp.mdga.visitor.Visitor;
/**
* This class represents the swap power card of this application.
*/
@Serializable
public class SwapCard extends PowerCard {
/**
* Constructor.

View File

@@ -1,11 +1,13 @@
package pp.mdga.game.card;
import com.jme3.network.serializing.Serializable;
import pp.mdga.game.BonusCard;
import pp.mdga.visitor.Visitor;
/**
* This class represents the turbo power card of this application.
*/
@Serializable
public class TurboCard extends PowerCard {
/**
* Constructor.