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

commonMain.ru.casperix.path.api.Path.kt Maven / Gradle / Ivy

package ru.casperix.path.api

import kotlinx.serialization.Serializable


@Serializable
class Path(val nodes: List, val weight: Int) {
	val start: Node
		get() {
			return nodes.first()
		}
	val finish: Node
		get() {
			return nodes.last()
		}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy