diff --git a/src/main/kotlin/group/ouroboros/potrogue/GameConfig.kt b/src/main/kotlin/group/ouroboros/potrogue/GameConfig.kt index be802ee..c79e17b 100644 --- a/src/main/kotlin/group/ouroboros/potrogue/GameConfig.kt +++ b/src/main/kotlin/group/ouroboros/potrogue/GameConfig.kt @@ -31,6 +31,7 @@ object GameConfig { .withDefaultTileset(TILESET) .withSize(WINDOW_WIDTH, WINDOW_HEIGHT) .withTitle("$GAME_ID | $GAME_VER") + .withIcon("assets/icon.png") .build() //TODO: Replace most of this with a json/yaml/whatever config file for the user to be able to edit. diff --git a/src/main/resources/assets/icon.png b/src/main/resources/assets/icon.png new file mode 100644 index 0000000..abc459f Binary files /dev/null and b/src/main/resources/assets/icon.png differ