diff --git a/src/main/java/com/github/hydos/ginger/engine/render/models/TexturedModel.java b/src/main/java/com/github/hydos/ginger/engine/render/models/TexturedModel.java index 577b5d2..850ef40 100644 --- a/src/main/java/com/github/hydos/ginger/engine/render/models/TexturedModel.java +++ b/src/main/java/com/github/hydos/ginger/engine/render/models/TexturedModel.java @@ -10,8 +10,6 @@ public class TexturedModel { public TexturedModel(RawModel model, ModelTexture texture) { this.rawModel = model; this.texture = texture; - - } public RawModel getRawModel() { @@ -21,7 +19,4 @@ public class TexturedModel { public ModelTexture getTexture() { return texture; } - - - }