diff --git a/src/Controller/GameController.java b/src/Controller/GameController.java new file mode 100644 index 0000000..10790ed --- /dev/null +++ b/src/Controller/GameController.java @@ -0,0 +1,23 @@ +package Controller; + +import Model.GameModel; +import Model.Player; +import View.GameView; + +public class GameController { + private GameModel model; + private GameView view; + + public static final int MAX_PLAYER_COUNT = 4; // 최대 플레이어 수 (본인 포함) + + private Player[] players = new Player[MAX_PLAYER_COUNT]; + + private Tile + + public GameController(GameModel model, GameView view) { + this.model = model; + this.view = view; + } + + +} diff --git a/src/Model/GameModel.java b/src/Model/GameModel.java new file mode 100644 index 0000000..b5adb84 --- /dev/null +++ b/src/Model/GameModel.java @@ -0,0 +1,10 @@ +package Model; + +import static Controller.GameController.MAX_PLAYER_COUNT; + +public class GameModel { + + private Player[] players = new Player[MAX_PLAYER_COUNT]; + + +}