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

package com.hypixel.hytale.server.core.inventory.container;

import java.util.Set;
import it.unimi.dsi.fastutil.objects.Object2IntOpenHashMap;
import java.util.Map;

public class TestRemoveItemSlotResult
{
    Map<Short, Integer> picked;
    int quantityRemaining;
    
    public TestRemoveItemSlotResult(final int testQuantityRemaining) {
        this.picked = new Object2IntOpenHashMap<Short>();
        this.quantityRemaining = testQuantityRemaining;
    }
    
    public boolean hasResult() {
        return !this.picked.isEmpty();
    }
    
    public Set<Short> getPickedSlots() {
        return this.picked.keySet();
    }
}
