First pass at CPlayerState::PutTo

Former-commit-id: 4fcad1ada2
This commit is contained in:
Henrique Gemignani Passos Lima
2022-10-04 21:50:29 +03:00
parent 08efa3fd4f
commit e56a45c6c4
2 changed files with 23 additions and 14 deletions

View File

@@ -0,0 +1,11 @@
#ifndef _COUTPUTSTREAM_HPP
#define _COUTPUTSTREAM_HPP
#include "types.h"
class COutputStream {
public:
void WriteBits(int val, int bitCount);
};
#endif // _COUTPUTSTREAM_HPP