Get IntelliJ to stop yelling at me
This commit is contained in:
15
src/client/kotlin/chickenmanfy/scify/modules/Bars.kt
Normal file
15
src/client/kotlin/chickenmanfy/scify/modules/Bars.kt
Normal 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")
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user