14 lines
324 B
Go
14 lines
324 B
Go
|
|
package xmlres
|
||
|
|
|
||
|
|
type EffectArg struct {
|
||
|
|
SideEffects struct {
|
||
|
|
SideEffect []struct {
|
||
|
|
ID int `json:"ID"`
|
||
|
|
SideEffectArgcount int `json:"SideEffectArgcount"`
|
||
|
|
SideEffectArg string `json:"SideEffectArg,omitempty"`
|
||
|
|
} `json:"SideEffect"`
|
||
|
|
} `json:"SideEffects"`
|
||
|
|
}
|
||
|
|
|
||
|
|
var EffectArgs map[int]int
|