gnuboy: initial 1.0.3 import (last official release)
[rofl0r-gnuboy.git] / sound.h
blob2056f804b4431c4fb7c580fdcd40dffd23b120fa
3 #ifndef __SOUND_H__
4 #define __SOUND_H__
7 struct sndchan
9 int on;
10 unsigned pos;
11 int cnt, encnt, swcnt;
12 int len, enlen, swlen;
13 int swfreq;
14 int freq;
15 int envol, endir;
19 struct snd
21 int rate;
22 struct sndchan ch[4];
23 byte wave[16];
27 extern struct snd snd;
34 #endif