diff --git a/src/main/java/com/github/halotroop/litecraft/logic/Gamemode.java b/src/main/java/com/github/halotroop/litecraft/logic/Gamemode.java deleted file mode 100644 index 7505aa5..0000000 --- a/src/main/java/com/github/halotroop/litecraft/logic/Gamemode.java +++ /dev/null @@ -1,6 +0,0 @@ -package com.github.halotroop.litecraft.logic; - -public enum Gamemode -{ - GRAVITY, FREECAM, -} diff --git a/src/main/java/com/github/halotroop/litecraft/world/dimension/Dimensions.java b/src/main/java/com/github/halotroop/litecraft/world/dimension/Dimensions.java deleted file mode 100644 index 2876d01..0000000 --- a/src/main/java/com/github/halotroop/litecraft/world/dimension/Dimensions.java +++ /dev/null @@ -1,9 +0,0 @@ -package com.github.halotroop.litecraft.world.dimension; - -import com.github.halotroop.litecraft.world.gen.EarthChunkGenerator; -import com.github.halotroop.litecraft.world.gen.modifier.CavesModifier; - -public final class Dimensions -{ - public static final Dimension OVERWORLD = new EarthDimension(0, "earth").addWorldModifier(new CavesModifier()); -} diff --git a/src/main/java/com/github/halotroop/litecraft/Litecraft.java b/src/main/java/com/halotroop/litecraft/Litecraft.java similarity index 94% rename from src/main/java/com/github/halotroop/litecraft/Litecraft.java rename to src/main/java/com/halotroop/litecraft/Litecraft.java index 77ab22b..4eb3ae5 100644 --- a/src/main/java/com/github/halotroop/litecraft/Litecraft.java +++ b/src/main/java/com/halotroop/litecraft/Litecraft.java @@ -1,14 +1,7 @@ -package com.github.halotroop.litecraft; +package com.halotroop.litecraft; import org.joml.*; -import com.github.halotroop.litecraft.render.BlockRenderer; -import com.github.halotroop.litecraft.save.LitecraftSave; -import com.github.halotroop.litecraft.screens.*; -import com.github.halotroop.litecraft.types.block.Blocks; -import com.github.halotroop.litecraft.types.entity.PlayerEntity; -import com.github.halotroop.litecraft.util.RelativeDirection; -import com.github.halotroop.litecraft.world.World; import com.github.hydos.ginger.engine.common.Constants; import com.github.hydos.ginger.engine.common.api.*; import com.github.hydos.ginger.engine.common.api.game.*; @@ -23,6 +16,13 @@ import com.github.hydos.ginger.engine.opengl.postprocessing.PostProcessing; import com.github.hydos.ginger.engine.opengl.render.*; import com.github.hydos.ginger.engine.opengl.render.models.GLTexturedModel; import com.github.hydos.ginger.engine.opengl.utils.*; +import com.halotroop.litecraft.render.BlockRenderer; +import com.halotroop.litecraft.save.LitecraftSave; +import com.halotroop.litecraft.screens.*; +import com.halotroop.litecraft.types.block.Blocks; +import com.halotroop.litecraft.types.entity.PlayerEntity; +import com.halotroop.litecraft.util.RelativeDirection; +import com.halotroop.litecraft.world.World; import tk.valoeghese.gateways.client.io.*; diff --git a/src/main/java/com/github/halotroop/litecraft/StarterGL.java b/src/main/java/com/halotroop/litecraft/StarterGL.java similarity index 92% rename from src/main/java/com/github/halotroop/litecraft/StarterGL.java rename to src/main/java/com/halotroop/litecraft/StarterGL.java index 3b3a30b..103b325 100644 --- a/src/main/java/com/github/halotroop/litecraft/StarterGL.java +++ b/src/main/java/com/halotroop/litecraft/StarterGL.java @@ -1,4 +1,4 @@ -package com.github.halotroop.litecraft; +package com.halotroop.litecraft; import org.lwjgl.Version; import org.lwjgl.glfw.GLFW; diff --git a/src/main/java/com/halotroop/litecraft/logic/Gamemode.java b/src/main/java/com/halotroop/litecraft/logic/Gamemode.java new file mode 100644 index 0000000..7f0ab4d --- /dev/null +++ b/src/main/java/com/halotroop/litecraft/logic/Gamemode.java @@ -0,0 +1,6 @@ +package com.halotroop.litecraft.logic; + +public enum Gamemode +{ + GRAVITY, FREECAM, +} diff --git a/src/main/java/com/github/halotroop/litecraft/logic/SODSerializable.java b/src/main/java/com/halotroop/litecraft/logic/SODSerializable.java similarity index 74% rename from src/main/java/com/github/halotroop/litecraft/logic/SODSerializable.java rename to src/main/java/com/halotroop/litecraft/logic/SODSerializable.java index 995bc61..d803081 100644 --- a/src/main/java/com/github/halotroop/litecraft/logic/SODSerializable.java +++ b/src/main/java/com/halotroop/litecraft/logic/SODSerializable.java @@ -1,4 +1,4 @@ -package com.github.halotroop.litecraft.logic; +package com.halotroop.litecraft.logic; import tk.valoeghese.sod.BinaryData; diff --git a/src/main/java/com/github/halotroop/litecraft/render/BlockRenderer.java b/src/main/java/com/halotroop/litecraft/render/BlockRenderer.java similarity index 93% rename from src/main/java/com/github/halotroop/litecraft/render/BlockRenderer.java rename to src/main/java/com/halotroop/litecraft/render/BlockRenderer.java index 951c74d..cccc222 100644 --- a/src/main/java/com/github/halotroop/litecraft/render/BlockRenderer.java +++ b/src/main/java/com/halotroop/litecraft/render/BlockRenderer.java @@ -1,10 +1,8 @@ -package com.github.halotroop.litecraft.render; +package com.halotroop.litecraft.render; import org.joml.Matrix4f; import org.lwjgl.opengl.*; -import com.github.halotroop.litecraft.types.block.BlockInstance; -import com.github.halotroop.litecraft.world.gen.WorldGenConstants; import com.github.hydos.ginger.engine.common.api.GingerRegister; import com.github.hydos.ginger.engine.common.elements.objects.RenderObject; import com.github.hydos.ginger.engine.common.io.Window; @@ -12,6 +10,8 @@ import com.github.hydos.ginger.engine.common.math.Maths; import com.github.hydos.ginger.engine.opengl.render.Renderer; import com.github.hydos.ginger.engine.opengl.render.models.GLTexturedModel; import com.github.hydos.ginger.engine.opengl.render.shaders.StaticShader; +import com.halotroop.litecraft.types.block.BlockInstance; +import com.halotroop.litecraft.world.gen.WorldGenConstants; public class BlockRenderer extends Renderer implements WorldGenConstants { diff --git a/src/main/java/com/github/halotroop/litecraft/render/VoxelLoader.java b/src/main/java/com/halotroop/litecraft/render/VoxelLoader.java similarity index 93% rename from src/main/java/com/github/halotroop/litecraft/render/VoxelLoader.java rename to src/main/java/com/halotroop/litecraft/render/VoxelLoader.java index 234fcfb..1126882 100644 --- a/src/main/java/com/github/halotroop/litecraft/render/VoxelLoader.java +++ b/src/main/java/com/halotroop/litecraft/render/VoxelLoader.java @@ -1,11 +1,11 @@ -package com.github.halotroop.litecraft.render; +package com.halotroop.litecraft.render; import java.nio.ByteBuffer; import org.lwjgl.opengl.*; -import com.github.halotroop.litecraft.types.block.*; import com.github.hydos.ginger.engine.opengl.utils.GLLoader; +import com.halotroop.litecraft.types.block.*; public class VoxelLoader extends GLLoader { diff --git a/src/main/java/com/github/halotroop/litecraft/save/LitecraftSave.java b/src/main/java/com/halotroop/litecraft/save/LitecraftSave.java similarity index 95% rename from src/main/java/com/github/halotroop/litecraft/save/LitecraftSave.java rename to src/main/java/com/halotroop/litecraft/save/LitecraftSave.java index 7846bc3..1ad0088 100644 --- a/src/main/java/com/github/halotroop/litecraft/save/LitecraftSave.java +++ b/src/main/java/com/halotroop/litecraft/save/LitecraftSave.java @@ -1,15 +1,15 @@ -package com.github.halotroop.litecraft.save; +package com.halotroop.litecraft.save; import java.io.*; import java.util.Random; import org.joml.Vector3f; -import com.github.halotroop.litecraft.Litecraft; -import com.github.halotroop.litecraft.types.entity.PlayerEntity; -import com.github.halotroop.litecraft.world.*; -import com.github.halotroop.litecraft.world.dimension.Dimension; import com.github.hydos.ginger.engine.common.cameras.Camera; +import com.halotroop.litecraft.Litecraft; +import com.halotroop.litecraft.types.entity.PlayerEntity; +import com.halotroop.litecraft.world.*; +import com.halotroop.litecraft.world.dimension.Dimension; import tk.valoeghese.sod.*; diff --git a/src/main/java/com/github/halotroop/litecraft/screens/ExitGameScreen.java b/src/main/java/com/halotroop/litecraft/screens/ExitGameScreen.java similarity index 94% rename from src/main/java/com/github/halotroop/litecraft/screens/ExitGameScreen.java rename to src/main/java/com/halotroop/litecraft/screens/ExitGameScreen.java index a3ab75c..ff2affb 100644 --- a/src/main/java/com/github/halotroop/litecraft/screens/ExitGameScreen.java +++ b/src/main/java/com/halotroop/litecraft/screens/ExitGameScreen.java @@ -1,4 +1,4 @@ -package com.github.halotroop.litecraft.screens; +package com.halotroop.litecraft.screens; import org.joml.Vector2f; diff --git a/src/main/java/com/github/halotroop/litecraft/screens/IngameHUD.java b/src/main/java/com/halotroop/litecraft/screens/IngameHUD.java similarity index 94% rename from src/main/java/com/github/halotroop/litecraft/screens/IngameHUD.java rename to src/main/java/com/halotroop/litecraft/screens/IngameHUD.java index f3d9e60..f9a2265 100644 --- a/src/main/java/com/github/halotroop/litecraft/screens/IngameHUD.java +++ b/src/main/java/com/halotroop/litecraft/screens/IngameHUD.java @@ -1,12 +1,12 @@ -package com.github.halotroop.litecraft.screens; +package com.halotroop.litecraft.screens; import org.joml.*; -import com.github.halotroop.litecraft.Litecraft; import com.github.hydos.ginger.engine.common.api.*; import com.github.hydos.ginger.engine.common.font.GUIText; import com.github.hydos.ginger.engine.common.screen.Screen; import com.github.hydos.ginger.engine.opengl.api.GingerGL; +import com.halotroop.litecraft.Litecraft; public class IngameHUD extends Screen { diff --git a/src/main/java/com/github/halotroop/litecraft/screens/TitleScreen.java b/src/main/java/com/halotroop/litecraft/screens/TitleScreen.java similarity index 90% rename from src/main/java/com/github/halotroop/litecraft/screens/TitleScreen.java rename to src/main/java/com/halotroop/litecraft/screens/TitleScreen.java index 6ea01a8..f6948ef 100644 --- a/src/main/java/com/github/halotroop/litecraft/screens/TitleScreen.java +++ b/src/main/java/com/halotroop/litecraft/screens/TitleScreen.java @@ -1,12 +1,9 @@ -package com.github.halotroop.litecraft.screens; +package com.halotroop.litecraft.screens; import java.util.ArrayList; import org.joml.*; -import com.github.halotroop.litecraft.Litecraft; -import com.github.halotroop.litecraft.save.LitecraftSave; -import com.github.halotroop.litecraft.world.dimension.Dimensions; import com.github.hydos.ginger.engine.common.api.GingerEngine; import com.github.hydos.ginger.engine.common.elements.GuiTexture; import com.github.hydos.ginger.engine.common.elements.buttons.TextureButton; @@ -14,6 +11,9 @@ import com.github.hydos.ginger.engine.common.font.GUIText; import com.github.hydos.ginger.engine.common.io.Window; import com.github.hydos.ginger.engine.common.screen.Screen; import com.github.hydos.ginger.engine.opengl.api.GingerGL; +import com.halotroop.litecraft.Litecraft; +import com.halotroop.litecraft.save.LitecraftSave; +import com.halotroop.litecraft.world.dimension.Dimensions; /** YeS */ public class TitleScreen extends Screen diff --git a/src/main/java/com/github/halotroop/litecraft/types/block/Block.java b/src/main/java/com/halotroop/litecraft/types/block/Block.java similarity index 97% rename from src/main/java/com/github/halotroop/litecraft/types/block/Block.java rename to src/main/java/com/halotroop/litecraft/types/block/Block.java index c4425aa..16aa74c 100644 --- a/src/main/java/com/github/halotroop/litecraft/types/block/Block.java +++ b/src/main/java/com/halotroop/litecraft/types/block/Block.java @@ -1,4 +1,4 @@ -package com.github.halotroop.litecraft.types.block; +package com.halotroop.litecraft.types.block; import java.util.*; diff --git a/src/main/java/com/github/halotroop/litecraft/types/block/BlockInstance.java b/src/main/java/com/halotroop/litecraft/types/block/BlockInstance.java similarity index 80% rename from src/main/java/com/github/halotroop/litecraft/types/block/BlockInstance.java rename to src/main/java/com/halotroop/litecraft/types/block/BlockInstance.java index 39185c0..32dcb7f 100644 --- a/src/main/java/com/github/halotroop/litecraft/types/block/BlockInstance.java +++ b/src/main/java/com/halotroop/litecraft/types/block/BlockInstance.java @@ -1,9 +1,9 @@ -package com.github.halotroop.litecraft.types.block; +package com.halotroop.litecraft.types.block; import org.joml.Vector3f; -import com.github.halotroop.litecraft.world.Chunk; import com.github.hydos.ginger.engine.common.elements.objects.RenderObject; +import com.halotroop.litecraft.world.Chunk; public class BlockInstance extends RenderObject { diff --git a/src/main/java/com/github/halotroop/litecraft/types/block/Blocks.java b/src/main/java/com/halotroop/litecraft/types/block/Blocks.java similarity index 89% rename from src/main/java/com/github/halotroop/litecraft/types/block/Blocks.java rename to src/main/java/com/halotroop/litecraft/types/block/Blocks.java index 5273902..5aa198c 100644 --- a/src/main/java/com/github/halotroop/litecraft/types/block/Blocks.java +++ b/src/main/java/com/halotroop/litecraft/types/block/Blocks.java @@ -1,8 +1,8 @@ -package com.github.halotroop.litecraft.types.block; +package com.halotroop.litecraft.types.block; import java.util.ArrayList; -import com.github.halotroop.litecraft.types.block.Block.Properties; +import com.halotroop.litecraft.types.block.Block.Properties; public final class Blocks { diff --git a/src/main/java/com/github/halotroop/litecraft/types/entity/Entity.java b/src/main/java/com/halotroop/litecraft/types/entity/Entity.java similarity index 88% rename from src/main/java/com/github/halotroop/litecraft/types/entity/Entity.java rename to src/main/java/com/halotroop/litecraft/types/entity/Entity.java index 3cbe9a3..f9a704f 100644 --- a/src/main/java/com/github/halotroop/litecraft/types/entity/Entity.java +++ b/src/main/java/com/halotroop/litecraft/types/entity/Entity.java @@ -1,4 +1,4 @@ -package com.github.halotroop.litecraft.types.entity; +package com.halotroop.litecraft.types.entity; import org.joml.Vector3f; diff --git a/src/main/java/com/github/halotroop/litecraft/types/entity/PlayerEntity.java b/src/main/java/com/halotroop/litecraft/types/entity/PlayerEntity.java similarity index 92% rename from src/main/java/com/github/halotroop/litecraft/types/entity/PlayerEntity.java rename to src/main/java/com/halotroop/litecraft/types/entity/PlayerEntity.java index 97d5799..8b2e2e4 100644 --- a/src/main/java/com/github/halotroop/litecraft/types/entity/PlayerEntity.java +++ b/src/main/java/com/halotroop/litecraft/types/entity/PlayerEntity.java @@ -1,14 +1,14 @@ -package com.github.halotroop.litecraft.types.entity; +package com.halotroop.litecraft.types.entity; import org.joml.Vector3f; -import com.github.halotroop.litecraft.Litecraft; -import com.github.halotroop.litecraft.util.RelativeDirection; -import com.github.halotroop.litecraft.world.gen.WorldGenConstants; import com.github.hydos.ginger.engine.common.Constants; import com.github.hydos.ginger.engine.common.api.GingerRegister; import com.github.hydos.ginger.engine.common.io.Window; import com.github.hydos.ginger.engine.opengl.render.models.GLTexturedModel; +import com.halotroop.litecraft.Litecraft; +import com.halotroop.litecraft.util.RelativeDirection; +import com.halotroop.litecraft.world.gen.WorldGenConstants; public class PlayerEntity extends Entity implements WorldGenConstants { diff --git a/src/main/java/com/github/halotroop/litecraft/util/RelativeDirection.java b/src/main/java/com/halotroop/litecraft/util/RelativeDirection.java similarity index 77% rename from src/main/java/com/github/halotroop/litecraft/util/RelativeDirection.java rename to src/main/java/com/halotroop/litecraft/util/RelativeDirection.java index 778e1ea..2128936 100644 --- a/src/main/java/com/github/halotroop/litecraft/util/RelativeDirection.java +++ b/src/main/java/com/halotroop/litecraft/util/RelativeDirection.java @@ -1,4 +1,4 @@ -package com.github.halotroop.litecraft.util; +package com.halotroop.litecraft.util; public enum RelativeDirection { diff --git a/src/main/java/com/github/halotroop/litecraft/util/noise/OctaveSimplexNoise.java b/src/main/java/com/halotroop/litecraft/util/noise/OctaveSimplexNoise.java similarity index 96% rename from src/main/java/com/github/halotroop/litecraft/util/noise/OctaveSimplexNoise.java rename to src/main/java/com/halotroop/litecraft/util/noise/OctaveSimplexNoise.java index 342a8cd..8608162 100644 --- a/src/main/java/com/github/halotroop/litecraft/util/noise/OctaveSimplexNoise.java +++ b/src/main/java/com/halotroop/litecraft/util/noise/OctaveSimplexNoise.java @@ -1,4 +1,4 @@ -package com.github.halotroop.litecraft.util.noise; +package com.halotroop.litecraft.util.noise; import java.util.Random; diff --git a/src/main/java/com/github/halotroop/litecraft/util/noise/SimplexNoise.java b/src/main/java/com/halotroop/litecraft/util/noise/SimplexNoise.java similarity index 99% rename from src/main/java/com/github/halotroop/litecraft/util/noise/SimplexNoise.java rename to src/main/java/com/halotroop/litecraft/util/noise/SimplexNoise.java index dd69f2c..c4eb5e0 100644 --- a/src/main/java/com/github/halotroop/litecraft/util/noise/SimplexNoise.java +++ b/src/main/java/com/halotroop/litecraft/util/noise/SimplexNoise.java @@ -1,4 +1,4 @@ -package com.github.halotroop.litecraft.util.noise; +package com.halotroop.litecraft.util.noise; /** OpenSimplex Noise in Java. * (Using implementation by Kurt Spencer) diff --git a/src/main/java/com/github/halotroop/litecraft/world/BlockAccess.java b/src/main/java/com/halotroop/litecraft/world/BlockAccess.java similarity index 53% rename from src/main/java/com/github/halotroop/litecraft/world/BlockAccess.java rename to src/main/java/com/halotroop/litecraft/world/BlockAccess.java index db7982c..0207ab5 100644 --- a/src/main/java/com/github/halotroop/litecraft/world/BlockAccess.java +++ b/src/main/java/com/halotroop/litecraft/world/BlockAccess.java @@ -1,6 +1,6 @@ -package com.github.halotroop.litecraft.world; +package com.halotroop.litecraft.world; -import com.github.halotroop.litecraft.types.block.Block; +import com.halotroop.litecraft.types.block.Block; public interface BlockAccess { diff --git a/src/main/java/com/github/halotroop/litecraft/world/Chunk.java b/src/main/java/com/halotroop/litecraft/world/Chunk.java similarity index 96% rename from src/main/java/com/github/halotroop/litecraft/world/Chunk.java rename to src/main/java/com/halotroop/litecraft/world/Chunk.java index ac282f7..979c141 100644 --- a/src/main/java/com/github/halotroop/litecraft/world/Chunk.java +++ b/src/main/java/com/halotroop/litecraft/world/Chunk.java @@ -1,14 +1,14 @@ -package com.github.halotroop.litecraft.world; +package com.halotroop.litecraft.world; import java.util.*; import java.util.function.ToIntFunction; import org.joml.Vector3f; -import com.github.halotroop.litecraft.logic.SODSerializable; -import com.github.halotroop.litecraft.render.BlockRenderer; -import com.github.halotroop.litecraft.types.block.*; -import com.github.halotroop.litecraft.world.gen.WorldGenConstants; +import com.halotroop.litecraft.logic.SODSerializable; +import com.halotroop.litecraft.render.BlockRenderer; +import com.halotroop.litecraft.types.block.*; +import com.halotroop.litecraft.world.gen.WorldGenConstants; import it.unimi.dsi.fastutil.ints.*; import it.unimi.dsi.fastutil.objects.*; diff --git a/src/main/java/com/github/halotroop/litecraft/world/World.java b/src/main/java/com/halotroop/litecraft/world/World.java similarity index 94% rename from src/main/java/com/github/halotroop/litecraft/world/World.java rename to src/main/java/com/halotroop/litecraft/world/World.java index 6af1a16..dc2af27 100644 --- a/src/main/java/com/github/halotroop/litecraft/world/World.java +++ b/src/main/java/com/halotroop/litecraft/world/World.java @@ -1,4 +1,4 @@ -package com.github.halotroop.litecraft.world; +package com.halotroop.litecraft.world; import java.util.*; import java.util.concurrent.*; @@ -7,14 +7,14 @@ import java.util.function.LongConsumer; import org.joml.Vector3f; -import com.github.halotroop.litecraft.Litecraft; -import com.github.halotroop.litecraft.render.BlockRenderer; -import com.github.halotroop.litecraft.save.LitecraftSave; -import com.github.halotroop.litecraft.types.block.*; -import com.github.halotroop.litecraft.types.entity.PlayerEntity; -import com.github.halotroop.litecraft.world.dimension.Dimension; -import com.github.halotroop.litecraft.world.gen.*; -import com.github.halotroop.litecraft.world.gen.modifier.WorldModifier; +import com.halotroop.litecraft.Litecraft; +import com.halotroop.litecraft.render.BlockRenderer; +import com.halotroop.litecraft.save.LitecraftSave; +import com.halotroop.litecraft.types.block.*; +import com.halotroop.litecraft.types.entity.PlayerEntity; +import com.halotroop.litecraft.world.dimension.Dimension; +import com.halotroop.litecraft.world.gen.*; +import com.halotroop.litecraft.world.gen.modifier.WorldModifier; import it.unimi.dsi.fastutil.longs.*; diff --git a/src/main/java/com/github/halotroop/litecraft/world/dimension/Dimension.java b/src/main/java/com/halotroop/litecraft/world/dimension/Dimension.java similarity index 81% rename from src/main/java/com/github/halotroop/litecraft/world/dimension/Dimension.java rename to src/main/java/com/halotroop/litecraft/world/dimension/Dimension.java index 23c0cea..a77924f 100644 --- a/src/main/java/com/github/halotroop/litecraft/world/dimension/Dimension.java +++ b/src/main/java/com/halotroop/litecraft/world/dimension/Dimension.java @@ -1,9 +1,9 @@ -package com.github.halotroop.litecraft.world.dimension; +package com.halotroop.litecraft.world.dimension; import java.util.*; -import com.github.halotroop.litecraft.world.gen.ChunkGenerator; -import com.github.halotroop.litecraft.world.gen.modifier.WorldModifier; +import com.halotroop.litecraft.world.gen.ChunkGenerator; +import com.halotroop.litecraft.world.gen.modifier.WorldModifier; import it.unimi.dsi.fastutil.ints.*; diff --git a/src/main/java/com/halotroop/litecraft/world/dimension/Dimensions.java b/src/main/java/com/halotroop/litecraft/world/dimension/Dimensions.java new file mode 100644 index 0000000..e4ca965 --- /dev/null +++ b/src/main/java/com/halotroop/litecraft/world/dimension/Dimensions.java @@ -0,0 +1,9 @@ +package com.halotroop.litecraft.world.dimension; + +import com.halotroop.litecraft.world.gen.EarthChunkGenerator; +import com.halotroop.litecraft.world.gen.modifier.CavesModifier; + +public final class Dimensions +{ + public static final Dimension OVERWORLD = new EarthDimension(0, "earth").addWorldModifier(new CavesModifier()); +} diff --git a/src/main/java/com/github/halotroop/litecraft/world/dimension/EarthDimension.java b/src/main/java/com/halotroop/litecraft/world/dimension/EarthDimension.java similarity index 68% rename from src/main/java/com/github/halotroop/litecraft/world/dimension/EarthDimension.java rename to src/main/java/com/halotroop/litecraft/world/dimension/EarthDimension.java index fc7e026..74753ff 100644 --- a/src/main/java/com/github/halotroop/litecraft/world/dimension/EarthDimension.java +++ b/src/main/java/com/halotroop/litecraft/world/dimension/EarthDimension.java @@ -1,6 +1,6 @@ -package com.github.halotroop.litecraft.world.dimension; +package com.halotroop.litecraft.world.dimension; -import com.github.halotroop.litecraft.world.gen.EarthChunkGenerator; +import com.halotroop.litecraft.world.gen.EarthChunkGenerator; class EarthDimension extends Dimension { diff --git a/src/main/java/com/github/halotroop/litecraft/world/gen/ChunkGenerator.java b/src/main/java/com/halotroop/litecraft/world/gen/ChunkGenerator.java similarity index 52% rename from src/main/java/com/github/halotroop/litecraft/world/gen/ChunkGenerator.java rename to src/main/java/com/halotroop/litecraft/world/gen/ChunkGenerator.java index fbd76ff..8d11c6a 100644 --- a/src/main/java/com/github/halotroop/litecraft/world/gen/ChunkGenerator.java +++ b/src/main/java/com/halotroop/litecraft/world/gen/ChunkGenerator.java @@ -1,6 +1,6 @@ -package com.github.halotroop.litecraft.world.gen; +package com.halotroop.litecraft.world.gen; -import com.github.halotroop.litecraft.world.*; +import com.halotroop.litecraft.world.*; public interface ChunkGenerator { diff --git a/src/main/java/com/github/halotroop/litecraft/world/gen/EarthChunkGenerator.java b/src/main/java/com/halotroop/litecraft/world/gen/EarthChunkGenerator.java similarity index 88% rename from src/main/java/com/github/halotroop/litecraft/world/gen/EarthChunkGenerator.java rename to src/main/java/com/halotroop/litecraft/world/gen/EarthChunkGenerator.java index 1c4d0e6..51faafc 100644 --- a/src/main/java/com/github/halotroop/litecraft/world/gen/EarthChunkGenerator.java +++ b/src/main/java/com/halotroop/litecraft/world/gen/EarthChunkGenerator.java @@ -1,10 +1,10 @@ -package com.github.halotroop.litecraft.world.gen; +package com.halotroop.litecraft.world.gen; import java.util.Random; -import com.github.halotroop.litecraft.types.block.*; -import com.github.halotroop.litecraft.util.noise.OctaveSimplexNoise; -import com.github.halotroop.litecraft.world.*; +import com.halotroop.litecraft.types.block.*; +import com.halotroop.litecraft.util.noise.OctaveSimplexNoise; +import com.halotroop.litecraft.world.*; public class EarthChunkGenerator implements ChunkGenerator, WorldGenConstants { diff --git a/src/main/java/com/github/halotroop/litecraft/world/gen/WorldGenConstants.java b/src/main/java/com/halotroop/litecraft/world/gen/WorldGenConstants.java similarity index 77% rename from src/main/java/com/github/halotroop/litecraft/world/gen/WorldGenConstants.java rename to src/main/java/com/halotroop/litecraft/world/gen/WorldGenConstants.java index 9beaf0c..8718a7e 100644 --- a/src/main/java/com/github/halotroop/litecraft/world/gen/WorldGenConstants.java +++ b/src/main/java/com/halotroop/litecraft/world/gen/WorldGenConstants.java @@ -1,4 +1,4 @@ -package com.github.halotroop.litecraft.world.gen; +package com.halotroop.litecraft.world.gen; public interface WorldGenConstants { diff --git a/src/main/java/com/github/halotroop/litecraft/world/gen/modifier/CavesModifier.java b/src/main/java/com/halotroop/litecraft/world/gen/modifier/CavesModifier.java similarity index 92% rename from src/main/java/com/github/halotroop/litecraft/world/gen/modifier/CavesModifier.java rename to src/main/java/com/halotroop/litecraft/world/gen/modifier/CavesModifier.java index 674251a..4a7efe4 100644 --- a/src/main/java/com/github/halotroop/litecraft/world/gen/modifier/CavesModifier.java +++ b/src/main/java/com/halotroop/litecraft/world/gen/modifier/CavesModifier.java @@ -1,11 +1,11 @@ -package com.github.halotroop.litecraft.world.gen.modifier; +package com.halotroop.litecraft.world.gen.modifier; import java.util.Random; -import com.github.halotroop.litecraft.types.block.Blocks; -import com.github.halotroop.litecraft.util.noise.OctaveSimplexNoise; -import com.github.halotroop.litecraft.world.BlockAccess; -import com.github.halotroop.litecraft.world.gen.WorldGenConstants; +import com.halotroop.litecraft.types.block.Blocks; +import com.halotroop.litecraft.util.noise.OctaveSimplexNoise; +import com.halotroop.litecraft.world.BlockAccess; +import com.halotroop.litecraft.world.gen.WorldGenConstants; public class CavesModifier implements WorldModifier, WorldGenConstants { diff --git a/src/main/java/com/github/halotroop/litecraft/world/gen/modifier/WorldModifier.java b/src/main/java/com/halotroop/litecraft/world/gen/modifier/WorldModifier.java similarity index 62% rename from src/main/java/com/github/halotroop/litecraft/world/gen/modifier/WorldModifier.java rename to src/main/java/com/halotroop/litecraft/world/gen/modifier/WorldModifier.java index 6f9ecb4..18a78d7 100644 --- a/src/main/java/com/github/halotroop/litecraft/world/gen/modifier/WorldModifier.java +++ b/src/main/java/com/halotroop/litecraft/world/gen/modifier/WorldModifier.java @@ -1,8 +1,8 @@ -package com.github.halotroop.litecraft.world.gen.modifier; +package com.halotroop.litecraft.world.gen.modifier; import java.util.Random; -import com.github.halotroop.litecraft.world.BlockAccess; +import com.halotroop.litecraft.world.BlockAccess; public interface WorldModifier {