aboutsummaryrefslogtreecommitdiff
path: root/src/main/kotlin/moe/nea/firmament/rei/math.kt
blob: e3504a122553b3fcb775c6c05c0ffe15a8fecf5f (plain)
1
2
3
4
5
6
7
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,
)