blob: 953677cc168ec9d52d3252571e83b448def46d59 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
package mt
type SoundID int32
type SoundSrcType uint8
const (
NoSrc SoundSrcType = iota
PosSrc
AOSrc
)
type SoundDef struct {
Name string
Gain, Pitch, Fade float32
}
|