mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-05-01 20:56:32 +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);
|
|
};
|