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

@@ -1,7 +1,7 @@
package chickenmanfy.scify
import chickenmanfy.scify.Modules.Menu
import chickenmanfy.scify.Modules.Hotkey
import chickenmanfy.scify.modules.Menu
import chickenmanfy.scify.modules.Hotkey
import net.fabricmc.api.ClientModInitializer
import net.fabricmc.fabric.api.client.event.lifecycle.v1.ClientTickEvents
import net.fabricmc.fabric.api.client.keybinding.v1.KeyBindingHelper

View File

@@ -1,7 +1,7 @@
package chickenmanfy.scify.Modules
package chickenmanfy.scify.modules
var autoWelcomeToggle: Boolean = false
class AutoWelcome() {
class AutoWelcome {
fun toggleAutoWelcome() {
autoWelcomeToggle = !autoWelcomeToggle
if (autoWelcomeToggle) {

View File

@@ -1,4 +1,4 @@
package chickenmanfy.scify.Modules
package chickenmanfy.scify.modules
var barsToggle: Boolean = false
class Bars {

View File

@@ -1,4 +1,4 @@
package chickenmanfy.scify.Modules
package chickenmanfy.scify.modules
var fishingToggle: Boolean = false
class FishingNotif {

View File

@@ -1,4 +1,4 @@
package chickenmanfy.scify.Modules
package chickenmanfy.scify.modules
import net.fabricmc.fabric.api.client.event.lifecycle.v1.ClientTickEvents
import net.fabricmc.fabric.api.client.keybinding.v1.KeyBindingHelper

View File

@@ -1,7 +1,7 @@
package chickenmanfy.scify.Modules
package chickenmanfy.scify.modules
var livelyModeToggle: Boolean = false
class LivelyMode() {
class LivelyMode {
fun toggleLivelyMode() {
livelyModeToggle = !livelyModeToggle
if (livelyModeToggle) {

View File

@@ -1,4 +1,4 @@
package chickenmanfy.scify.Modules
package chickenmanfy.scify.modules
import net.fabricmc.api.EnvType
import net.fabricmc.api.Environment