22 lines
437 B
Java
22 lines
437 B
Java
|
package mineplex.game.clans.items.attributes;
|
||
|
|
||
|
import java.util.HashSet;
|
||
|
import java.util.Set;
|
||
|
|
||
|
public class AttributeContainer
|
||
|
{
|
||
|
|
||
|
private Set<ItemAttribute> _attributes;
|
||
|
public Set<ItemAttribute> getAttributes() { return _attributes; }
|
||
|
|
||
|
public AttributeContainer(ItemAttribute... attributes)
|
||
|
{
|
||
|
_attributes = new HashSet<ItemAttribute>();
|
||
|
|
||
|
for (ItemAttribute attribute : attributes)
|
||
|
{
|
||
|
_attributes.add(attribute);
|
||
|
}
|
||
|
}
|
||
|
}
|