0

Preparation for APIv4, general code cleanup

This commit is contained in:
Pepich
2017-07-08 12:12:30 +02:00
parent 25294b4e5f
commit ca3aee41a6
5 changed files with 125 additions and 113 deletions

View File

@@ -0,0 +1,12 @@
package com.redstoner.annotations;
import java.lang.annotation.ElementType;
import java.lang.annotation.Target;
import com.redstoner.misc.CommandHolderType;
@Target(ElementType.TYPE)
public @interface Commands
{
CommandHolderType value();
}