mirror of
https://github.com/Cpt-Adok/SNAKE.git
synced 2026-03-28 17:13:43 +00:00
13 lines
335 B
Java
13 lines
335 B
Java
package tests;
|
|
|
|
import configuration.ConfigGame;
|
|
|
|
public class XmlReaderTest {
|
|
public static void main(String[] args) {
|
|
ConfigGame configXml = new ConfigGame(null);
|
|
System.out.println(configXml.getPersonnages());
|
|
System.out.println(configXml.getN());
|
|
System.out.println(configXml.getMap());
|
|
}
|
|
}
|