17 lines
376 B
Go
17 lines
376 B
Go
package ls_structs
|
|
|
|
import "eq2emu/internal/common"
|
|
|
|
// PlayRequest for client version 1
|
|
type PlayRequestV1 struct {
|
|
CharID uint32 `eq2:"int32"`
|
|
Name common.EQ2String16 `eq2:"string16"`
|
|
}
|
|
|
|
// PlayRequest for client version 284
|
|
type PlayRequestV284 struct {
|
|
CharID uint32 `eq2:"int32"`
|
|
ServerID uint32 `eq2:"int32"`
|
|
Unknown []uint8 `eq2:"int8,len=3"`
|
|
}
|