Implementing state objects

This commit is contained in:
naomi 2025-05-11 05:09:50 +00:00
parent 0bb650e72e
commit 50cc8e2a7b
12 changed files with 813 additions and 499 deletions

18
pom.xml
View file

@ -1,15 +1,26 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>dev.boyfailure.quajra</groupId>
<artifactId>VectorBreakout</artifactId>
<version>1.0-SNAPSHOT</version>
<version>20250411_test1</version>
<packaging>jar</packaging>
<name>Vector Breakout</name>
<description>A clone of Breakout with a QuadraScan-inspired vector graphics artstyle.</description>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>21</maven.compiler.source>
<maven.compiler.target>21</maven.compiler.target>
<maven.compiler.release>21</maven.compiler.release>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<exec.mainClass>dev.boyfailure.quajra.vectorbreakout.VectorBreakout</exec.mainClass>
</properties>
<build>
<plugins>
<plugin>
@ -26,4 +37,5 @@
</plugin>
</plugins>
</build>
</project>