32 lines
		
	
	
	
		
			1.6 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
			
		
		
	
	
			32 lines
		
	
	
	
		
			1.6 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
<?xml version="1.0" encoding="UTF-8"?>
 | 
						|
 | 
						|
<?import javafx.scene.control.Button?>
 | 
						|
<?import javafx.scene.image.Image?>
 | 
						|
<?import javafx.scene.image.ImageView?>
 | 
						|
<?import javafx.scene.layout.AnchorPane?>
 | 
						|
<?import javafx.scene.text.Font?>
 | 
						|
 | 
						|
<AnchorPane maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="600.0" prefWidth="400.0" style="-fx-background-color: #252525;" xmlns="http://javafx.com/javafx/19" xmlns:fx="http://javafx.com/fxml/1" fx:controller="Controllers.MainSceneController">
 | 
						|
   <children>
 | 
						|
      <ImageView fitHeight="478.0" fitWidth="482.0" layoutX="-38.0" layoutY="-65.0" pickOnBounds="true" preserveRatio="true">
 | 
						|
         <image>
 | 
						|
            <Image url="@../logo_final.png" />
 | 
						|
         </image>
 | 
						|
      </ImageView>
 | 
						|
      <Button layoutX="115.0" layoutY="329.0" mnemonicParsing="false" onAction="#btnPlayClicked" prefHeight="53.0" prefWidth="171.0" style="-fx-background-color: white;" text="Play">
 | 
						|
         <font>
 | 
						|
            <Font name="Bodoni MT Black" size="24.0" />
 | 
						|
         </font>
 | 
						|
      </Button>
 | 
						|
      <Button layoutX="115.0" layoutY="415.0" mnemonicParsing="false" onAction="#btnRulesClicked" prefHeight="53.0" prefWidth="171.0" style="-fx-background-color: white;" text="How to Play">
 | 
						|
         <font>
 | 
						|
            <Font name="Bodoni MT Black" size="18.0" />
 | 
						|
         </font>
 | 
						|
      </Button>
 | 
						|
      <Button layoutX="115.0" layoutY="502.0" mnemonicParsing="false" onAction="#btnCreditsClicked" prefHeight="53.0" prefWidth="171.0" style="-fx-background-color: white;" text="Credits">
 | 
						|
         <font>
 | 
						|
            <Font name="Bodoni MT Black" size="24.0" />
 | 
						|
         </font>
 | 
						|
      </Button>
 | 
						|
   </children>
 | 
						|
</AnchorPane>
 |