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