All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.projecttl.inventory.util.MathSupport.kt Maven / Gradle / Ivy

There is a newer version: 4.6.0
Show newest version
package net.projecttl.inventory.util

/**
 * Math in inventories
 */
object MathSupport {
    fun toLocation(index: Int): InvLocation {
        return InvLocation(index / 9, index % 9)
    }

    fun toIndex(location: InvLocation): Int {
        return location.y * 9 + location.x
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy