mirror of
https://github.com/AtlasMediaGroup/TotalFreedomMod.git
synced 2024-11-17 04:46:11 +00:00
ed2f15cc54
1. Remove marco from dev 2. Add namehistory 3. Fix grammar issues 4. Actually use CoreProtect bridge to rollback players 5. Improve automatic wiper
15 lines
330 B
Java
15 lines
330 B
Java
package me.totalfreedom.totalfreedommod.command;
|
|
|
|
import java.lang.annotation.Retention;
|
|
import java.lang.annotation.RetentionPolicy;
|
|
|
|
@Retention(RetentionPolicy.RUNTIME)
|
|
public @interface CommandParameters
|
|
{
|
|
|
|
String description();
|
|
|
|
String usage();
|
|
|
|
String aliases() default ""; // "alias1,alias2,alias3" - no spaces
|
|
} |