mirror of https://github.com/PrimeDecomp/prime.git
12 lines
179 B
C++
12 lines
179 B
C++
|
#ifndef _COUTPUTSTREAM_HPP
|
||
|
#define _COUTPUTSTREAM_HPP
|
||
|
|
||
|
#include "types.h"
|
||
|
|
||
|
class COutputStream {
|
||
|
public:
|
||
|
void WriteBits(int val, int bitCount);
|
||
|
};
|
||
|
|
||
|
#endif // _COUTPUTSTREAM_HPP
|