mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-20 12:48:00 +00:00
Fix compile error
This commit is contained in:
@@ -96,7 +96,7 @@ public class MatchScreen extends FScreen {
|
||||
players.setDropDownContainer(this);
|
||||
|
||||
FMenuBar menuBar = (FMenuBar)getHeader();
|
||||
menuBar.addTab("Game", new VGameMenu());
|
||||
menuBar.addTab("Game", new VGameMenu(game));
|
||||
menuBar.addTab("Players (" + playerPanels.size() + ")", players);
|
||||
menuBar.addTab("Log", log);
|
||||
menuBar.addTab("Dev", devMenu);
|
||||
|
||||
@@ -56,8 +56,8 @@ public class VStack extends FDropDown {
|
||||
|
||||
private int stackSize;
|
||||
|
||||
public VStack(IGameView stack0, PlayerView localPlayer0) {
|
||||
gameView = stack0;
|
||||
public VStack(IGameView gameView0, PlayerView localPlayer0) {
|
||||
gameView = gameView0;
|
||||
localPlayer = localPlayer0;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user