13 lines
261 B
Go
13 lines
261 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
|
|
) |