All Downloads are FREE. Search and download functionalities are using the official Maven repository.

dev.aurelium.auraskills.api.loot.LootValues Maven / Gradle / Ivy

There is a newer version: 2.2.3
Show newest version
package dev.aurelium.auraskills.api.loot;

import java.util.Map;
import java.util.Set;

public class LootValues extends LootOptioned {

    private final int weight;
    private final String message;
    private final Map> contexts;

    public LootValues(int weight, String message, Map> contexts, Map options) {
        super(options);
        this.weight = weight;
        this.message = message;
        this.contexts = contexts;
    }

    public int getWeight() {
        return weight;
    }

    public String getMessage() {
        return message;
    }

    public Map> getContexts() {
        return contexts;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy