Gitnuro/src/main/kotlin/app/git/graph/IGraphNode.kt
Abdelilah El Aissaoui 87d7f1cdae Added new log tree
2021-10-15 01:09:25 +02:00

6 lines
121 B
Kotlin

package app.git.graph
interface IGraphNode {
val graphParentCount: Int
fun getGraphParent(nth: Int): GraphNode
}