mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-04-25 14:03:37 +00:00
12 lines
305 B
C++
12 lines
305 B
C++
#include "../../Minecraft.World/Build/stdafx.h"
|
|
#include "DLCManager.h"
|
|
#include "DLCCapeFile.h"
|
|
|
|
DLCCapeFile::DLCCapeFile(const std::wstring &path) : DLCFile(DLCManager::e_DLCType_Cape,path)
|
|
{
|
|
}
|
|
|
|
void DLCCapeFile::addData(PBYTE pbData, DWORD dwBytes)
|
|
{
|
|
app.AddMemoryTextureFile(m_path,pbData,dwBytes);
|
|
} |