Clone of PhatAC @ https://github.com/floaterxk/PhatAC

TurbineFile.h 244B

12345678910111213141516171819202122
  1. #pragma once
  2. class TurbineFile
  3. {
  4. public:
  5. TurbineFile(DWORD dwID);
  6. TurbineFile(DWORD dwID, BYTE *data, DWORD length);
  7. ~TurbineFile();
  8. BYTE *GetData();
  9. DWORD GetLength();
  10. private:
  11. DWORD m_dwID;
  12. BYTE *m_pbData;
  13. DWORD m_dwLength;
  14. };