Relocate Source to proper directory.

This commit is contained in:
AlgorithmX2
2014-09-23 19:26:27 -05:00
parent fe927ce65d
commit 386d18a059
785 changed files with 35585 additions and 35580 deletions
+24
View File
@@ -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;
}
}