Added initial engine

This commit is contained in:
Gnarwhal 2024-08-07 05:04:15 +00:00
commit 79787f6525
Signed by: Gnarwhal
GPG key ID: 0989A73D8C421174
30 changed files with 1914 additions and 0 deletions

View file

@ -0,0 +1,8 @@
package com.gnarly.engine.properties;
public class ImproperFormattingException extends RuntimeException {
public ImproperFormattingException(String message) {
super(message);
}
}