update to 1.19.3 and starts of clickgui
This commit is contained in:
parent
412cabff8a
commit
05ff377b5c
11 changed files with 115 additions and 15 deletions
18
src/main/java/me/kawaiizenbo/moonlight/module/Category.java
Normal file
18
src/main/java/me/kawaiizenbo/moonlight/module/Category.java
Normal file
|
@ -0,0 +1,18 @@
|
|||
package me.kawaiizenbo.moonlight.module;
|
||||
|
||||
public enum Category
|
||||
{
|
||||
COMBAT("Combat"),
|
||||
MOVEMENT("Movement"),
|
||||
RENDER("Render"),
|
||||
WORLD("World"),
|
||||
PLAYER("Player"),
|
||||
CHAT("Chat");
|
||||
|
||||
public String name;
|
||||
|
||||
Category(String name)
|
||||
{
|
||||
this.name = name;
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue