package com.xfestudio.xfeservermanager.api.command;

public enum SelectorType {
    SELF,
    NEAREST_PLAYER,
    RANDOM_PLAYER,
    ALL_PLAYERS,
    ALL_ENTITIES,
    DIRECT,
    UNKNOWN;

    public boolean isPotentiallyUnbounded() {
        return this == ALL_PLAYERS || this == ALL_ENTITIES;
    }
}
