You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
527 B
30 lines
527 B
package visualiser.Controllers;
|
|
|
|
import javafx.fxml.FXML;
|
|
import javafx.scene.layout.AnchorPane;
|
|
|
|
import java.net.URL;
|
|
import java.util.ResourceBundle;
|
|
|
|
/**
|
|
* Created by zwu18 on 25/07/17.
|
|
*/
|
|
public class LobbyController extends Controller {
|
|
|
|
@FXML
|
|
AnchorPane lobbyWrapper;
|
|
|
|
@Override
|
|
public void initialize(URL location, ResourceBundle resources) {
|
|
|
|
}
|
|
|
|
public AnchorPane startWrapper(){
|
|
return lobbyWrapper;
|
|
}
|
|
|
|
public void enterLobby(){
|
|
lobbyWrapper.setVisible(true);
|
|
}
|
|
}
|