package org.pollux3d.shared;
import java.io.IOException;
import org.codehaus.jackson.JsonGenerationException;
import org.codehaus.jackson.map.JsonMappingException;
import org.pollux3d.client.JsonLoader;
public class JsonLoaderTest
{
/**
* @param args
* @throws IOException
* @throws JsonMappingException
* @throws JsonGenerationException
*/
public static void main(String[] args) throws JsonGenerationException, JsonMappingException, IOException
{
JsonLoader loader = new JsonLoader();
loader.loadSystem();
}
}