implement guild semaphore locking

This commit is contained in:
wish
2023-03-09 17:31:43 +11:00
parent 9a8edf0b64
commit d5dc15fc93
4 changed files with 25 additions and 17 deletions

View File

@@ -1,18 +1,18 @@
package mhfpacket
import (
"errors"
"errors"
"erupe-ce/network/clientctx"
"erupe-ce/network"
"erupe-ce/common/byteframe"
"erupe-ce/network"
"erupe-ce/network/clientctx"
)
// MsgSysLockGlobalSema represents the MSG_SYS_LOCK_GLOBAL_SEMA
type MsgSysLockGlobalSema struct {
AckHandle uint32
UserIDLength uint16
ServerChannelIDLength uint16
UserIDLength uint16
ServerChannelIDLength uint16
UserIDString string
ServerChannelIDString string
}