1 2 3 4 5 6 7 8 9 10 11 12
package at.hannibal2.skyhanni.test import at.hannibal2.skyhanni.utils.LorenzUtils object TestBingo { var testBingo = false fun toggle() { testBingo = !testBingo LorenzUtils.chat("Test Bingo " + (if (testBingo) "enabled" else "disabled")) } }