package com.hypixel.hytale.server.core.modules.entity.component;
import com.hypixel.hytale.codec.builder.BuilderCodec;
import com.hypixel.hytale.component.Component;
import com.hypixel.hytale.component.ComponentType;
import com.hypixel.hytale.server.core.modules.entity.EntityModule;
import com.hypixel.hytale.server.core.universe.world.storage.EntityStore;
public class Intangible implements Component<EntityStore> {
public static final Intangible INSTANCE = new Intangible();
public static final BuilderCodec<Intangible> CODEC = BuilderCodec.builder(Intangible.class, () -> INSTANCE).build();
public static ComponentType<EntityStore, Intangible> getComponentType() {
return EntityModule.get().getIntangibleComponentType();
}
private Intangible() {
}
public Component<EntityStore> clone() {
return INSTANCE;
}
}