aboutsummaryrefslogtreecommitdiff
path: root/src/main/kotlin/moe/nea/firmament/rei/math.kt
diff options
context:
space:
mode:
authornea <nea@nea.moe>2023-05-30 22:47:56 +0200
committernea <nea@nea.moe>2023-05-30 22:47:56 +0200
commit88cb9468b4432f68d1197f512f68c951fdbdf3dd (patch)
treefb9da150d4173cbe33d68b80c6d86240fe03c4e2 /src/main/kotlin/moe/nea/firmament/rei/math.kt
parent3139306088f8d3cad1b4906c3bbd1b412b9bda6f (diff)
downloadfirmament-88cb9468b4432f68d1197f512f68c951fdbdf3dd.tar.gz
firmament-88cb9468b4432f68d1197f512f68c951fdbdf3dd.tar.bz2
firmament-88cb9468b4432f68d1197f512f68c951fdbdf3dd.zip
Forge recipes and coin items
Diffstat (limited to 'src/main/kotlin/moe/nea/firmament/rei/math.kt')
-rw-r--r--src/main/kotlin/moe/nea/firmament/rei/math.kt8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/main/kotlin/moe/nea/firmament/rei/math.kt b/src/main/kotlin/moe/nea/firmament/rei/math.kt
new file mode 100644
index 0000000..e3504a1
--- /dev/null
+++ b/src/main/kotlin/moe/nea/firmament/rei/math.kt
@@ -0,0 +1,8 @@
+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,
+)