CannonShooter/core/src/de/samdev/cannonshooter/Textures.java

14 lines
305 B
Java
Raw Normal View History

2015-04-10 14:10:32 +02:00
package de.samdev.cannonshooter;
2015-08-29 12:18:10 +02:00
import com.badlogic.gdx.graphics.Texture;
2015-04-10 14:10:32 +02:00
2015-08-29 12:18:10 +02:00
public final class Textures {
public static Texture texbackground;
2015-09-14 16:40:30 +02:00
public static Texture cannon;
2015-08-29 12:18:10 +02:00
public static void init() {
texbackground = new Texture("level_background.png");
2015-09-14 16:40:30 +02:00
cannon = new Texture("cannon.png");
2015-08-29 12:18:10 +02:00
}
2015-04-10 14:10:32 +02:00
}