mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-04-29 09:33:37 +00:00
16 lines
290 B
C++
16 lines
290 B
C++
#pragma once
|
|
#include "DLCGameRules.h"
|
|
|
|
class DLCGameRulesFile : public DLCGameRules
|
|
{
|
|
private:
|
|
uint8_t *m_pbData;
|
|
DWORD m_dwBytes;
|
|
|
|
public:
|
|
DLCGameRulesFile(const std::wstring &path);
|
|
|
|
virtual void addData(uint8_t *pbData, DWORD dwBytes);
|
|
virtual uint8_t *getData(DWORD &dwBytes);
|
|
};
|