mirror of
https://github.com/spiffcode/hostile-takeover.git
synced 2026-04-09 20:31:27 -06:00
21 lines
294 B
C++
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__
|