forked from jzitnik/twodcraft
Added Burning state so player will be burning even after he is out of lava. Also added texture for fire that is added on top of steve texture
12 lines
331 B
Java
12 lines
331 B
Java
package cz.jzitnik.game.annotations;
|
|
|
|
import java.lang.annotation.Retention;
|
|
import java.lang.annotation.RetentionPolicy;
|
|
import java.lang.annotation.Target;
|
|
import java.lang.annotation.ElementType;
|
|
|
|
@Retention(RetentionPolicy.RUNTIME)
|
|
@Target(ElementType.TYPE)
|
|
@RequireAnnotation(BlockRegistry.class)
|
|
public @interface Burning {
|
|
} |