Expanded Character to include sprites and positions.

Added George sprites for testing.
TestCode for George
This commit is contained in:
MickWerf
2020-05-25 20:58:06 +02:00
parent a3b14a9273
commit cc37fc2858
7 changed files with 77 additions and 4 deletions

View File

@@ -0,0 +1,15 @@
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();
}
}