Initial implentation game
This commit is contained in:
@@ -1,4 +1,26 @@
|
||||
package it.polimi.ingsw.gc14.Model;
|
||||
|
||||
import it.polimi.ingsw.gc14.Model.Cards.BuildingCard;
|
||||
import it.polimi.ingsw.gc14.Model.Cards.TribeCard;
|
||||
|
||||
import javax.smartcardio.Card;
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
|
||||
public class Game {
|
||||
private List<Slot> slotList;
|
||||
private List<BuildingCard> tribeDeck;
|
||||
private List<TribeCard> upperListTribe;
|
||||
private List<TribeCard> lowerListTribe;
|
||||
private List<BuildingCard> upperListBuilding;
|
||||
private List<BuildingCard> lowerListBuilding;
|
||||
|
||||
public Game() {
|
||||
slotList = new ArrayList<Slot>();
|
||||
tribeDeck = new ArrayList<>();
|
||||
upperListTribe = new ArrayList<>();
|
||||
lowerListTribe = new ArrayList<>();
|
||||
upperListBuilding = new ArrayList<>();
|
||||
lowerListBuilding = new ArrayList<>();
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user