aboutsummaryrefslogtreecommitdiff
path: root/src/main/kotlin/rei/math.kt
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/kotlin/rei/math.kt')
-rw-r--r--src/main/kotlin/rei/math.kt10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/main/kotlin/rei/math.kt b/src/main/kotlin/rei/math.kt
deleted file mode 100644
index 1318beb..0000000
--- a/src/main/kotlin/rei/math.kt
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-package moe.nea.firmament.rei
-
-import me.shedaniel.math.Point
-
-operator fun Point.plus(other: Point): Point = Point(
- this.x + other.x,
- this.y + other.y,
-)