OnlinePlayerMap

class OnlinePlayerMap<V>

A map where entries will be removed atomatically when a player leaves the server.

Constructors

OnlinePlayerMap
Link copied to clipboard
fun OnlinePlayerMap()

Functions

get
Link copied to clipboard
operator fun get(player: Player): V?
minusAssign
Link copied to clipboard
operator fun minusAssign(player: Player)
set
Link copied to clipboard
operator fun set(player: Player, value: V)

Properties

internalMap
Link copied to clipboard
val internalMap: HashMap<UUID, V>