mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/4jcraft.git
synced 2026-05-23 22:07:09 +00:00
11 lines
189 B
C++
11 lines
189 B
C++
#pragma once
|
|
#include "DLCFile.h"
|
|
|
|
class DLCCapeFile : public DLCFile
|
|
{
|
|
public:
|
|
DLCCapeFile(const std::wstring &path);
|
|
|
|
virtual void addData(uint8_t *pbData, std::uint32_t dataBytes);
|
|
};
|