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

20 lines
491 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;
public static Texture cannon_body;
public static Texture cannon_barrel;
public static Texture cannon_hearth;
public static Texture cannon_bullet;
2015-08-29 12:18:10 +02:00
public static void init() {
texbackground = new Texture("level_background.png");
cannon_body = new Texture("cannon_body.png");
cannon_barrel = new Texture("cannon_barrel.png");
2015-08-29 12:18:10 +02:00
}
2015-04-10 14:10:32 +02:00
}