Files
netwerk-programming-eindopd…/core/src/test/java/CharacterLoadingTest.java
MickWerf cc37fc2858 Expanded Character to include sprites and positions.
Added George sprites for testing.
TestCode for George
2020-05-25 20:58:06 +02:00

16 lines
435 B
Java

import com.badlogic.gdx.Gdx;
import com.badlogic.gdx.graphics.Texture;
import netwerkprog.game.client.game.characters.DevTest1;
import netwerkprog.game.util.game.Character;
import org.junit.Test;
public class CharacterLoadingTest {
@Test
public void george() {
String path = "core/assets/george.png";
Texture texture = new Texture(Gdx.files.internal(path));
Character george = new DevTest1();
}
}