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

package com.hypixel.hytale.server.core.universe.world.meta.state;

import com.hypixel.hytale.server.core.universe.PlayerRef;
import com.hypixel.hytale.protocol.Packet;
import java.util.List;

@Deprecated
public interface SendableBlockState
{
    void sendTo(final List<Packet> p0);
    
    void unloadFrom(final List<Packet> p0);
    
    default boolean canPlayerSee(final PlayerRef player) {
        return true;
    }
}
