feat: started play function
This commit is contained in:
@@ -31,6 +31,10 @@ public class Game {
|
||||
@Getter
|
||||
private Market market;
|
||||
|
||||
public void play() {
|
||||
generateStats();
|
||||
}
|
||||
|
||||
public void generateStats() {
|
||||
forestType = ForestType.getRandom();
|
||||
System.out.println("forest: " + forestType);
|
||||
|
||||
@@ -2,6 +2,7 @@ package cz.jull;
|
||||
|
||||
public class Main {
|
||||
public static void main(String[] args) {
|
||||
|
||||
Game game = new Game();
|
||||
game.play();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user