This commit is contained in:
desyncfy
2024-07-03 12:26:05 -07:00
parent dd4cf8c5a7
commit b16a84f81b
45 changed files with 94 additions and 12 deletions

View File

@@ -0,0 +1,20 @@
package chickenmanfy.scify
object BridgeMixins {
private var num0: Int = 0
private var num1: Int = 0
fun getNum0(): Int {
return num0
}
fun getNum1(): Int {
return num1
}
fun setNum0(number: Int) {
num0 = number
}
fun setNum1(number: Int) {
num1 = number
}
}