1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
package mt type SoundID int32 type SoundSrcType uint8 const ( NoSrc SoundSrcType = iota // nowhere PosSrc // pos AOSrc // ao ) //go:generate stringer -linecomment -type SoundSrcType type SoundDef struct { Name string Gain, Pitch, Fade float32 }