4jcraft/Common/DLC/DLCCapeFile.cpp
2026-03-06 18:31:46 +01:00

12 lines
300 B
C++

#include "../../Minecraft.World/Build/stdafx.h"
#include "DLCManager.h"
#include "DLCCapeFile.h"
DLCCapeFile::DLCCapeFile(const wstring &path) : DLCFile(DLCManager::e_DLCType_Cape,path)
{
}
void DLCCapeFile::addData(PBYTE pbData, DWORD dwBytes)
{
app.AddMemoryTextureFile(m_path,pbData,dwBytes);
}