eq2go/internal/appearances/constants.go

14 lines
262 B
Go

package appearances
// Hash search constants
const (
// Maximum number of iterations to find an entry in hash table
HashSearchMax = 20
)
// Client version constants for appearance compatibility
const (
MinimumClientVersion = 0
DefaultClientVersion = 283
)