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