2025-09-23 17:34:58 +00:00
|
|
|
package xmlres
|
|
|
|
|
|
|
|
|
|
type EffectArg struct {
|
|
|
|
|
SideEffects struct {
|
|
|
|
|
SideEffect []struct {
|
|
|
|
|
ID int `json:"ID"`
|
|
|
|
|
SideEffectArgcount int `json:"SideEffectArgcount"`
|
2026-04-13 11:28:30 +08:00
|
|
|
SideEffectArg rawFlexibleString `json:"SideEffectArg,omitempty"`
|
2025-09-23 17:34:58 +00:00
|
|
|
} `json:"SideEffect"`
|
|
|
|
|
} `json:"SideEffects"`
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var EffectArgs map[int]int
|