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

dev.robocode.tankroyale.server.model.IPoint.kt Maven / Gradle / Ivy

package dev.robocode.tankroyale.server.model

/** Interface of a 2D point with abstract values. */
interface IPoint {
    /** x coordinate */
    val x: Double

    /** y coordinate */
    val y: Double
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy