13 lines
383 B
Go
13 lines
383 B
Go
package ls_structs
|
|
|
|
import "eq2emu/internal/common"
|
|
|
|
type DeleteCharacterResponse struct {
|
|
Response uint8 `eq2:"int8"`
|
|
ServerID uint32 `eq2:"int32"`
|
|
CharID uint32 `eq2:"int32"`
|
|
AccountID uint32 `eq2:"int32"`
|
|
Name common.EQ2String16 `eq2:"string16"`
|
|
MaxCharacters uint32 `eq2:"int32"`
|
|
}
|