diff options
author | inglettronald <inglettronald@gmail.com> | 2023-06-08 19:54:16 -0500 |
---|---|---|
committer | inglettronald <inglettronald@gmail.com> | 2023-06-08 19:54:16 -0500 |
commit | b9ebcac2b791c448da6aa1ecf03ebfe0530428b3 (patch) | |
tree | f1095b2b2588e7d91463ad9fbc83cd72ac77c1dd /src/main | |
parent | 67b628b44bd6f35e0a71824014a8c1b92742eac9 (diff) | |
download | DulkirMod-Fabric-b9ebcac2b791c448da6aa1ecf03ebfe0530428b3.tar.gz DulkirMod-Fabric-b9ebcac2b791c448da6aa1ecf03ebfe0530428b3.tar.bz2 DulkirMod-Fabric-b9ebcac2b791c448da6aa1ecf03ebfe0530428b3.zip |
More complete Config Implementation work
Diffstat (limited to 'src/main')
-rw-r--r-- | src/main/kotlin/com/dulkirfabric/config/DulkirConfig.kt | 2 | ||||
-rw-r--r-- | src/main/kotlin/com/dulkirfabric/config/Pair.kt | 28 |
2 files changed, 29 insertions, 1 deletions
diff --git a/src/main/kotlin/com/dulkirfabric/config/DulkirConfig.kt b/src/main/kotlin/com/dulkirfabric/config/DulkirConfig.kt index cc36306..2855a17 100644 --- a/src/main/kotlin/com/dulkirfabric/config/DulkirConfig.kt +++ b/src/main/kotlin/com/dulkirfabric/config/DulkirConfig.kt @@ -76,7 +76,7 @@ class DulkirConfig { val deleteButtonEnabled = true val insertInFront = true //val createNewCell: BiFunction<Pair<Int,Int>, NestedListListEntry<Pair<Int,Int>, INNER>, INNER>> - + //TODO builder.transparentBackground() screen = builder.build() diff --git a/src/main/kotlin/com/dulkirfabric/config/Pair.kt b/src/main/kotlin/com/dulkirfabric/config/Pair.kt new file mode 100644 index 0000000..cf5e914 --- /dev/null +++ b/src/main/kotlin/com/dulkirfabric/config/Pair.kt @@ -0,0 +1,28 @@ +package com.dulkirfabric.config + +class Pair<T, R>(val t: T, val r: R) { + + fun getLeft(): T { + return t + } + + fun getRight(): R { + return r + } + + override fun equals(other: Any?): Boolean { + if (this === other) { + return true + } else if (other != null && this::class == other::class) { + other as Pair<*, *> + return t == other.t && r == other.r + } + return false + } + + override fun hashCode(): Int { + var result = t?.hashCode() ?: 0 + result = 31 * result + (r?.hashCode() ?: 0) + return result + } +} |