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

commonMain.com.bselzer.gw2.v2.model.tile.position.TextureBound.kt Maven / Gradle / Ivy

The newest version!
package com.bselzer.gw2.v2.model.tile.position

/**
 * Represents the bounds of rectangular texture with corners [topLeft], [topRight], [bottomLeft] and [bottomRight].
 */
interface TextureBound {
    val topLeft: TexturePosition
    val topRight: TexturePosition
    val bottomLeft: TexturePosition
    val bottomRight: TexturePosition
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy