moved to jme3

This commit is contained in:
Ziver Koc 2020-03-21 19:57:43 +01:00
parent 4dd9985229
commit d563f539a5
20 changed files with 124 additions and 114 deletions

View file

@ -1,6 +1,7 @@
package se.cookery.world;
package se.cookery.core.world;
import org.junit.jupiter.api.Test;
import se.cookery.core.world.Block;
import static org.junit.jupiter.api.Assertions.*;

View file

@ -1,7 +1,9 @@
package se.cookery.world;
package se.cookery.core.world;
import org.junit.jupiter.api.BeforeAll;
import org.junit.jupiter.api.Test;
import se.cookery.core.world.GroundType;
import se.cookery.core.world.GroundTypeManager;
import java.io.IOException;
import java.security.InvalidParameterException;

View file

@ -1,7 +1,8 @@
package se.cookery.world;
package se.cookery.core.world;
import org.junit.jupiter.api.Test;
import se.cookery.world.gen.GrassLandWorldGenerator;
import se.cookery.core.world.World;
import se.cookery.core.world.gen.GrassLandWorldGenerator;
import static org.junit.jupiter.api.Assertions.*;

View file

@ -1,4 +1,4 @@
package se.cookery.world.gen;
package se.cookery.core.world.gen;
import org.junit.jupiter.api.Test;