Restructure all modules what could go wrong?

This commit is contained in:
desyncfy
2024-06-29 12:28:08 -07:00
parent 17cce61ac6
commit 4a15cc7274
5 changed files with 23 additions and 21 deletions

View File

@@ -4,12 +4,11 @@ var barsToggle: Boolean = false
class Bars {
fun toggleBars() {
barsToggle = !barsToggle
if (barsToggle) {
bars()
}
}
private fun bars() {
println("Bars")
fun bars() {
if (barsToggle) {
return
}
}
}