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

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

import javax.annotation.Nonnull;
import com.hypixel.hytale.component.Store;
import com.hypixel.hytale.server.core.universe.world.storage.EntityStore;
import com.hypixel.hytale.component.system.DelayedSystem;

public class UpdateEntitySeedSystem extends DelayedSystem<EntityStore>
{
    public UpdateEntitySeedSystem() {
        super(1.0f);
    }
    
    @Override
    public void delayedTick(final float dt, final int systemIndex, @Nonnull final Store<EntityStore> store) {
        store.getExternalData().getWorld().updateEntitySeed(store);
    }
}
