27 lines
1.2 KiB
XML
27 lines
1.2 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<?import javafx.scene.control.Button?>
|
|
<?import javafx.scene.control.Label?>
|
|
<?import javafx.scene.layout.Pane?>
|
|
<?import javafx.scene.text.Font?>
|
|
|
|
<Pane id="rootPane" fx:id="rootPane" maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="400.0" prefWidth="600.0" styleClass="background" stylesheets="@style/menu.css" xmlns="http://javafx.com/javafx/11.0.1" xmlns:fx="http://javafx.com/fxml/1" fx:controller="ihm.controller.MenuController">
|
|
<children>
|
|
<Label layoutX="126.0" layoutY="46.0" styleClass="titre" text="Shadow Hunters">
|
|
<font>
|
|
<Font size="48.0" />
|
|
</font>
|
|
</Label>
|
|
<Button layoutX="242.0" layoutY="149.0" mnemonicParsing="false" onMouseClicked="#commencerPartie" prefHeight="51.0" prefWidth="102.0" styleClass="bouton" text="Jouer">
|
|
<font>
|
|
<Font size="24.0" />
|
|
</font>
|
|
</Button>
|
|
<Button layoutX="242.0" layoutY="235.0" mnemonicParsing="false" onMouseClicked="#afficherRegle" styleClass="bouton" text="Regles">
|
|
<font>
|
|
<Font size="24.0" />
|
|
</font>
|
|
</Button>
|
|
</children>
|
|
</Pane>
|