// 
// Decompiled by Procyon v0.6.0
// 

package com.hypixel.hytale.server.core.modules.entity.player;

import javax.annotation.Nonnull;
import com.hypixel.hytale.server.core.modules.entity.EntityModule;
import com.hypixel.hytale.component.ComponentType;
import com.hypixel.hytale.codec.builder.BuilderCodec;
import com.hypixel.hytale.server.core.universe.world.storage.EntityStore;
import com.hypixel.hytale.component.Component;

public class ApplyRandomSkinPersistedComponent implements Component<EntityStore>
{
    public static final ApplyRandomSkinPersistedComponent INSTANCE;
    public static final BuilderCodec<ApplyRandomSkinPersistedComponent> CODEC;
    
    public static ComponentType<EntityStore, ApplyRandomSkinPersistedComponent> getComponentType() {
        return EntityModule.get().getApplyRandomSkinPersistedComponent();
    }
    
    @Nonnull
    @Override
    public Component<EntityStore> clone() {
        return this;
    }
    
    static {
        INSTANCE = new ApplyRandomSkinPersistedComponent();
        CODEC = BuilderCodec.builder(ApplyRandomSkinPersistedComponent.class, () -> ApplyRandomSkinPersistedComponent.INSTANCE).build();
    }
}
