-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Lars
committed
Dec 1, 2024
1 parent
427ac30
commit 8900398
Showing
6 changed files
with
199 additions
and
59 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
package net.rk4z.fabricord.utils | ||
|
||
import net.rk4z.s1.swiftbase.fabric.FabricMessageKey | ||
|
||
@Suppress("MISSING_DEPENDENCY_SUPERCLASS_IN_TYPE_ARGUMENT", "ClassName", "unused") | ||
open class System : FabricMessageKey { | ||
open class Log : System() { | ||
object LOADING : Log() | ||
object ENABLING : Log() | ||
object DISABLING : Log() | ||
object INITIALIZED : Log() | ||
|
||
open class MissingRequiredParam : Log() { | ||
object ITEM_0 : MissingRequiredParam() | ||
object ITEM_1 : MissingRequiredParam() | ||
object ITEM_2 : MissingRequiredParam() | ||
} | ||
|
||
object STILLSTARTINGUP : Log() | ||
object FAILEDSTART : Log() | ||
object FAILEDSTOP : Log() | ||
|
||
object CHECKING_UPDATE : Log() | ||
object ALL_VERSION_COUNT : Log() | ||
object NEW_VERSION_COUNT : Log() | ||
object VIEW_LATEST_VER : Log() | ||
object LATEST_VERSION_FOUND : Log() | ||
object YOU_ARE_USING_LATEST : Log() | ||
object FAILED_TO_CHECK_UPDATE : Log() | ||
object ERROR_WHILE_CHECKING_UPDATE : Log() | ||
|
||
open class Other : Log() { | ||
object UNKNOWN : Other() | ||
object UNKNOWN_ERROR : Other() | ||
object ERROR : Other() | ||
} | ||
} | ||
} |
Oops, something went wrong.