-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCommands.java
More file actions
29 lines (21 loc) · 1.24 KB
/
Copy pathCommands.java
File metadata and controls
29 lines (21 loc) · 1.24 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
package utils;
public final class Commands {
public static final String GET_PLAYER_DECK = "getPlayerDeck";
public static final String GET_CARDS_IN_HAND = "getCardsInHand";
public static final String GET_CARDS_ON_TABLE = "getCardsOnTable";
public static final String GET_PLAYER_TURN = "getPlayerTurn";
public static final String GET_PLAYER_HERO = "getPlayerHero";
public static final String GET_PLAYER_MANA = "getPlayerMana";
public static final String GET_CARD_AT_POSITION = "getCardAtPosition";
public static final String GET_FROZEN_CARDS_ON_TABLE = "getFrozenCardsOnTable";
public static final String GET_TOTAL_GAMES_PLAYED = "getTotalGamesPlayed";
public static final String GET_PLAYER_ONE_WINS = "getPlayerOneWins";
public static final String GET_PLAYER_TWO_WINS = "getPlayerTwoWins";
public static final String END_PLAYER_TURN = "endPlayerTurn";
public static final String PLACE_CARD = "placeCard";
public static final String CARD_USES_ATTACK = "cardUsesAttack";
public static final String CARD_USES_ABILITY = "cardUsesAbility";
public static final String USE_ATTACK_HERO = "useAttackHero";
public static final String USE_HERO_ABILITY = "useHeroAbility";
private Commands() { }
}