aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGTNH-Colen <54497873+GTNH-Colen@users.noreply.github.com>2023-01-01 07:16:35 +0000
committerGTNH-Colen <54497873+GTNH-Colen@users.noreply.github.com>2023-01-01 07:16:35 +0000
commitf2c76440098e2dde8a056b59822e92993b0a0f1d (patch)
treec8ebfce7b10d5c589f74ea093e3fa7964797197c
parent377482c41b9d758ef56c2c5f545095bbc55f900b (diff)
downloadGT5-Unofficial-f2c76440098e2dde8a056b59822e92993b0a0f1d.tar.gz
GT5-Unofficial-f2c76440098e2dde8a056b59822e92993b0a0f1d.tar.bz2
GT5-Unofficial-f2c76440098e2dde8a056b59822e92993b0a0f1d.zip
Delete unused class
-rw-r--r--src/main/java/com/github/technus/tectech/util/CelestialBody.java17
1 files changed, 0 insertions, 17 deletions
diff --git a/src/main/java/com/github/technus/tectech/util/CelestialBody.java b/src/main/java/com/github/technus/tectech/util/CelestialBody.java
deleted file mode 100644
index 790624a774..0000000000
--- a/src/main/java/com/github/technus/tectech/util/CelestialBody.java
+++ /dev/null
@@ -1,17 +0,0 @@
-package com.github.technus.tectech.util;
-
-import net.minecraft.block.Block;
-
-import java.util.ArrayList;
-
-public class CelestialBody {
-
- CelestialBody(Block mainBody, ArrayList<CelestialBody> orbitingBodies) {
- this.mainBody = mainBody;
- this.orbitingBodies = orbitingBodies;
- }
-
- public Block mainBody;
-
- public ArrayList<CelestialBody> orbitingBodies;
-}