From c38dcee2c5f483ef5990ae9204355e1bc3c2bf74 Mon Sep 17 00:00:00 2001 From: Linnea Gräf <nea@nea.moe> Date: Mon, 28 Oct 2024 12:07:55 +0100 Subject: Make REI optional --- src/main/kotlin/rei/math.kt | 10 ---------- 1 file changed, 10 deletions(-) delete mode 100644 src/main/kotlin/rei/math.kt (limited to 'src/main/kotlin/rei/math.kt') 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, -) -- cgit