Skip to content
Snippets Groups Projects
Commit 502881e6 authored by Alexis BUSSENEAU's avatar Alexis BUSSENEAU
Browse files

Add graphic class

parent 7adbe31a
No related branches found
No related tags found
No related merge requests found
Pipeline #
<?xml version="1.0" encoding="UTF-8"?>
<?import javafx.scene.layout.BorderPane?>
<?import javafx.scene.layout.GridPane?>
<?import javafx.scene.layout.HBox?>
<?import javafx.geometry.Insets?>
<?import javafx.scene.control.Label?>
<BorderPane xmlns:fx="http://javafx.com/fxml" fx:controller="controller.GameController" stylesheets="style.css">
<center>
<GridPane fx:id="board" alignment="CENTER">
<padding>
<Insets bottom="10.0" left="10.0" right="10.0" top="10.0" />
</padding>
</GridPane>
</center>
<bottom>
<HBox alignment="CENTER">
<Label text="Level : " />
<Label fx:id="levelNumber" />
<padding>
<Insets bottom="10.0" />
</padding>
</HBox>
</bottom>
</BorderPane>
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment