4jcraft/Minecraft.Client/Platform/Common/DLC/DLCCapeFile.cpp
2026-03-10 10:13:58 +11:00

13 lines
312 B
C++

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