mirror of
https://github.com/Lucaslah/WeatherChanger.git
synced 2026-01-10 13:07:52 +00:00
11 lines
318 B
Java
11 lines
318 B
Java
package me.lucaslah.weatherchanger.command;
|
|
|
|
import com.mojang.brigadier.CommandDispatcher;
|
|
import net.minecraft.util.Identifier;
|
|
|
|
public abstract class Command {
|
|
public abstract <T> void register(CommandDispatcher<T> dispatcher);
|
|
public abstract Identifier getId();
|
|
public abstract boolean isEnabled();
|
|
}
|