v0.8.0: added window icons to desktop module

This commit is contained in:
Evan Debenham 2019-10-29 17:05:11 -04:00
parent 05363c95fd
commit 57ae9dd6df
6 changed files with 2 additions and 0 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 321 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 218 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 440 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 274 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 278 B

View File

@ -104,6 +104,8 @@ public class DesktopLauncher {
DesktopWindowListener listener = new DesktopWindowListener();
config.setWindowListener( listener );
config.setWindowIcon( "icon_16.png", "icon_32.png", "icon_64.png", "icon_128.png", "icon_256.png" );
new Lwjgl3Application(new ShatteredPixelDungeon(new DesktopPlatformSupport()), config);
}
}