]> git.lizzy.rs Git - mt.git/blob - sound.go
953677cc168ec9d52d3252571e83b448def46d59
[mt.git] / sound.go
1 package mt
2
3 type SoundID int32
4
5 type SoundSrcType uint8
6
7 const (
8         NoSrc SoundSrcType = iota
9         PosSrc
10         AOSrc
11 )
12
13 type SoundDef struct {
14         Name              string
15         Gain, Pitch, Fade float32
16 }