mirror of
https://github.com/GabsPuNs/Project-Zenith-Main.git
synced 2026-05-22 10:44:49 +00:00
15 lines
283 B
C++
15 lines
283 B
C++
#pragma once
|
|
#include "DLCGameRules.h"
|
|
|
|
class DLCGameRulesFile : public DLCGameRules
|
|
{
|
|
private:
|
|
PBYTE m_pbData;
|
|
DWORD m_dwBytes;
|
|
|
|
public:
|
|
DLCGameRulesFile(const wstring &path);
|
|
|
|
void addData(PBYTE pbData, DWORD dwBytes) override;
|
|
PBYTE getData(DWORD &dwBytes) override;
|
|
}; |