Skip to content
This repository has been archived by the owner on Nov 29, 2017. It is now read-only.

Commit

Permalink
textureGameMenu in progress
Browse files Browse the repository at this point in the history
  • Loading branch information
MENZI-MCHUNU committed Oct 17, 2017
1 parent 7ed01bf commit 551aaf3
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions src/main/resources/fxml/newTextureGameMenu.fxml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
<?xml version="1.0" encoding="UTF-8"?>

<?import javafx.scene.control.*?>
<?import javafx.scene.layout.*?>


<VBox xmlns="http://javafx.com/javafx" alignment="CENTER"
xmlns:fx="http://javafx.com/fxml"
fx:controller="ui.controller.NewTextureGameController">

<GridPane prefWidth="300.0">
<columnConstraints>
<ColumnConstraints halignment="RIGHT" hgrow="NEVER"/>
<ColumnConstraints halignment="CENTER" hgrow="NEVER" prefWidth="10.0"/>
<ColumnConstraints halignment="LEFT" hgrow="SOMETIMES" minWidth="10.0" prefWidth="100.0"/>
</columnConstraints>
<rowConstraints>
<RowConstraints/>
<RowConstraints/>
<RowConstraints/>
<RowConstraints/>
</rowConstraints>

<Label text="Komi:" GridPane.rowIndex="3"/>
</GridPane>
<Button fx:id="startButton" mnemonicParsing="false" text="Start"/>

</VBox>


0 comments on commit 551aaf3

Please sign in to comment.