mirror of
https://github.com/Mezeporta/Erupe.git
synced 2026-03-22 07:32:32 +01:00
330 non-vendor files had minor formatting inconsistencies (comment alignment, whitespace). No logic changes.
15 lines
423 B
Go
15 lines
423 B
Go
package channelserver
|
|
|
|
// Raviente register type IDs (used in MsgSysLoadRegister / MsgSysNotifyRegister)
|
|
const (
|
|
raviRegisterState = uint32(0x40000)
|
|
raviRegisterSupport = uint32(0x50000)
|
|
raviRegisterGeneral = uint32(0x60000)
|
|
)
|
|
|
|
// Raviente semaphore constants
|
|
const (
|
|
raviSemaphoreStride = 0x10000 // ID spacing between hs_l0* semaphores
|
|
raviSemaphoreMax = uint16(127) // max players per Raviente semaphore
|
|
)
|