hostile-takeover/game/mixer.h
2014-07-06 17:47:28 -07:00

21 lines
294 B
C++

#ifndef __MIXER_H__
#define __MIXER_H__
#include "basictypes.h"
namespace wi {
struct Channel // chnl
{
byte *pb;
byte *pbEnd;
byte bSampleLast;
int nStepIndex;
};
void MixChannels(Channel *achnl, int cchnl, byte *pb, word cb);
} // namespace wi
#endif // __MIXER_H__