Get IntelliJ to stop yelling at me

This commit is contained in:
desyncfy
2024-06-23 17:02:00 -07:00
parent d767062d14
commit b77781c278
7 changed files with 10 additions and 10 deletions

View File

@@ -0,0 +1,15 @@
package chickenmanfy.scify.modules
var barsToggle: Boolean = false
class Bars {
fun toggleBars() {
barsToggle = !barsToggle
if (barsToggle) {
bars()
}
}
private fun bars() {
println("Bars")
}
}