diff options
author | romangraef <romangraef@loves.dicksinhisan.us> | 2018-08-05 19:37:41 +0200 |
---|---|---|
committer | romangraef <romangraef@loves.dicksinhisan.us> | 2018-08-05 19:37:41 +0200 |
commit | 558dd3b92818566976043f750c4b3f2f34f2d17f (patch) | |
tree | 28b74f4e5133db0e1f12cb9432ed36c00ad306ce /src/main/kotlin/de/romjaki/pluggabledino/assets.kt | |
parent | 6585706c47343bcaf8145d19e4eee2f23562ec57 (diff) | |
download | pluggabledino-558dd3b92818566976043f750c4b3f2f34f2d17f.tar.gz pluggabledino-558dd3b92818566976043f750c4b3f2f34f2d17f.tar.bz2 pluggabledino-558dd3b92818566976043f750c4b3f2f34f2d17f.zip |
IMPORTANT GAME UPDATE! NOW WITH 100% MORE COMMUNISM
Diffstat (limited to 'src/main/kotlin/de/romjaki/pluggabledino/assets.kt')
-rw-r--r-- | src/main/kotlin/de/romjaki/pluggabledino/assets.kt | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/src/main/kotlin/de/romjaki/pluggabledino/assets.kt b/src/main/kotlin/de/romjaki/pluggabledino/assets.kt index 42d3016..5c12b35 100644 --- a/src/main/kotlin/de/romjaki/pluggabledino/assets.kt +++ b/src/main/kotlin/de/romjaki/pluggabledino/assets.kt @@ -1,9 +1,6 @@ package de.romjaki.pluggabledino -import org.newdawn.slick.Animation -import org.newdawn.slick.Image -import org.newdawn.slick.SpriteSheet -import org.newdawn.slick.UnicodeFont +import org.newdawn.slick.* import org.newdawn.slick.opengl.TextureLoader import java.awt.Font import java.io.FileInputStream @@ -27,4 +24,6 @@ val groundline = Image(TextureLoader.getTexture("PNG", FileInputStream("assets/i val cactusImg = Image(TextureLoader.getTexture("PNG", FileInputStream("assets/images/cactus.png"))) -val BirdImg= Image(TextureLoader.getTexture("PNG", FileInputStream("assets/images/bird1.png")))
\ No newline at end of file +val BirdImg = Image(TextureLoader.getTexture("PNG", FileInputStream("assets/images/bird1.png"))) + +val anthemSound = Music(FileInputStream("assets/audio/anthem.ogg"), "anthem.ogg") |