fix error

This commit is contained in:
Sem van der Hoeven
2020-05-27 23:19:36 +02:00
parent 71800d3530
commit f15b81330a

View File

@@ -1,10 +1,11 @@
package netwerkprog.game.client.game.characters;
import com.badlogic.gdx.graphics.g2d.TextureRegion;
import netwerkprog.game.util.game.GameCharacter;
import netwerkprog.game.util.game.Faction;
public class DevTest1 extends GameCharacter {
public DevTest1() {
super("DevTest1", Faction.HACKER, "core/assets/ScifiCritters4.PNG");
super("DevTest1", Faction.HACKER, new TextureRegion());
}
}