27 lines
811 B
Go
27 lines
811 B
Go
package ls_structs
|
|
|
|
import "eq2emu/internal/common"
|
|
|
|
// CreateCharacterReply for client version 1
|
|
type CreateCharacterReplyV1 struct {
|
|
AccountID uint32 `eq2:"int32"`
|
|
Response uint8 `eq2:"int8"`
|
|
Name common.EQ2String16 `eq2:"string16"`
|
|
}
|
|
|
|
// CreateCharacterReply for client version 1189
|
|
type CreateCharacterReplyV1189 struct {
|
|
AccountID uint32 `eq2:"int32"`
|
|
Unknown uint32 `eq2:"int32"`
|
|
Response uint8 `eq2:"int8"`
|
|
Name common.EQ2String16 `eq2:"string16"`
|
|
}
|
|
|
|
// CreateCharacterReply for client version 60085
|
|
type CreateCharacterReplyV60085 struct {
|
|
AccountID uint32 `eq2:"int32"`
|
|
Unknown uint32 `eq2:"int32"`
|
|
Response uint8 `eq2:"int8"`
|
|
Name common.EQ2String16 `eq2:"string16"`
|
|
}
|