summaryrefslogtreecommitdiff
path: root/src/com/redstoner/annotations/Commands.java
blob: 1388de42d974bc23bdd5ae2a3244f52cfd6e3a5a (plain)
1
2
3
4
5
6
7
8
9
10
11
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();
}