mirror of
https://github.com/OpenDiablo2/OpenDiablo2
synced 2024-11-03 01:37:18 -04:00
29 lines
859 B
Go
29 lines
859 B
Go
|
package d2netpacket
|
||
|
|
||
|
import (
|
||
|
"github.com/OpenDiablo2/OpenDiablo2/d2common/d2enum"
|
||
|
"github.com/OpenDiablo2/OpenDiablo2/d2core/d2inventory"
|
||
|
"github.com/OpenDiablo2/OpenDiablo2/d2networking/d2netpacket/d2netpackettype"
|
||
|
)
|
||
|
|
||
|
type AddPlayerPacket struct {
|
||
|
Id string `json:"id"`
|
||
|
X int `json:"x"`
|
||
|
Y int `json:"y"`
|
||
|
HeroType d2enum.Hero `json:"hero"`
|
||
|
Equipment d2inventory.CharacterEquipment `json:"equipment"`
|
||
|
}
|
||
|
|
||
|
func CreateAddPlayerPacket(id string, x, y int, heroType d2enum.Hero, equipment d2inventory.CharacterEquipment) NetPacket {
|
||
|
return NetPacket{
|
||
|
PacketType: d2netpackettype.AddPlayer,
|
||
|
PacketData: AddPlayerPacket{
|
||
|
Id: id,
|
||
|
X: x,
|
||
|
Y: y,
|
||
|
HeroType: heroType,
|
||
|
Equipment: equipment,
|
||
|
},
|
||
|
}
|
||
|
}
|