15 lines
329 B
Java
15 lines
329 B
Java
package mindustry.entities.def;
|
|
|
|
import mindustry.annotations.Annotations.*;
|
|
import mindustry.gen.*;
|
|
|
|
@EntityDef(value = {StandardEffectc.class, Childc.class}, pooled = true)
|
|
@Component
|
|
abstract class StandardEffectComp implements Effectc, DrawLayerEffectsc{
|
|
|
|
@Override
|
|
public void drawEffects(){
|
|
draw();
|
|
}
|
|
}
|