Relocate Source to proper directory.
This commit is contained in:
@@ -0,0 +1,24 @@
|
||||
package appeng.server;
|
||||
|
||||
import appeng.server.subcommands.ChunkLogger;
|
||||
import appeng.server.subcommands.Supporters;
|
||||
|
||||
public enum Commands
|
||||
{
|
||||
chunklogger(4, new ChunkLogger()), supporters(0, new Supporters());
|
||||
|
||||
public final int level;
|
||||
public final ISubCommand command;
|
||||
|
||||
@Override
|
||||
public String toString()
|
||||
{
|
||||
return name();
|
||||
}
|
||||
|
||||
private Commands(int level, ISubCommand w) {
|
||||
this.level = level;
|
||||
command = w;
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user