aboutsummaryrefslogtreecommitdiff
path: root/Minecraft.Client/Common/DLC/DLCGameRulesFile.h
blob: 671cab6a955cfdda9c1a0e7599673577af9a3dfc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#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;
};