summaryrefslogtreecommitdiff
path: root/sound.go
blob: c6629680c286275973f079df174a0a83cd77f9a0 (plain)
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
}