Initial commit

This commit is contained in:
Paldiu
2022-12-21 15:32:53 -06:00
commit 0f0639f2b8
78 changed files with 2367 additions and 0 deletions

View File

@ -0,0 +1,12 @@
package io.github.simplexdevelopment.api.annotations;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
@Target({ElementType.FIELD, ElementType.TYPE, ElementType.METHOD})
@Retention(RetentionPolicy.RUNTIME)
public @interface SoundFile {
String value();
}