11 lines
267 B
Go
11 lines
267 B
Go
package ls_structs
|
|
|
|
import "eq2emu/internal/common"
|
|
|
|
type DeleteCharacterRequest struct {
|
|
CharID uint32 `eq2:"int32"`
|
|
ServerID uint32 `eq2:"int32"`
|
|
Unknown uint32 `eq2:"int32"`
|
|
Name common.EQ2String16 `eq2:"string16"`
|
|
}
|