mirror of
https://github.com/GravitLauncher/Launcher
synced 2024-11-16 03:59:14 +03:00
13 lines
445 B
Java
13 lines
445 B
Java
|
package ru.gravit.launcher;
|
||
|
|
||
|
import java.lang.annotation.ElementType;
|
||
|
import java.lang.annotation.Retention;
|
||
|
import java.lang.annotation.RetentionPolicy;
|
||
|
import java.lang.annotation.Target;
|
||
|
|
||
|
@Retention(RetentionPolicy.CLASS)
|
||
|
@Target({ElementType.TYPE, ElementType.FIELD, ElementType.CONSTRUCTOR, ElementType.METHOD})
|
||
|
public @interface LauncherAPI {
|
||
|
/* This annotation implies that method/field/class should not be renamed or obfuscated */
|
||
|
}
|