mirror of
https://github.com/OpenDiablo2/OpenDiablo2
synced 2025-02-03 15:17:04 -05:00
12 lines
209 B
Go
12 lines
209 B
Go
|
package d2enum
|
||
|
|
||
|
// Frames of party Buttons
|
||
|
const (
|
||
|
PartyButtonListeningFrame = iota * 4
|
||
|
PartyButtonRelationshipsFrame
|
||
|
PartyButtonSeeingFrame
|
||
|
PartyButtonCorpsLootingFrame
|
||
|
|
||
|
PartyButtonNextButtonFrame = 2
|
||
|
)
|