mirror of
https://gitlab.com/Scribble/gdlenhanced.git
synced 2026-08-17 14:23:04 -04:00
18 lines
259 B
C++
18 lines
259 B
C++
|
|
#pragma once
|
|
|
|
class TurbineFile
|
|
{
|
|
public:
|
|
TurbineFile(uint32_t dwID);
|
|
TurbineFile(uint32_t dwID, BYTE *data, uint32_t length);
|
|
~TurbineFile();
|
|
|
|
BYTE *GetData();
|
|
uint32_t GetLength();
|
|
|
|
private:
|
|
uint32_t m_dwID;
|
|
BYTE *m_pbData;
|
|
uint32_t m_dwLength;
|
|
};
|