mirror of
https://gitea.murdle.top/murdle/mc-lce.git
synced 2026-03-11 03:28:59 +02:00
12 lines
272 B
C++
12 lines
272 B
C++
#include "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);
|
|
} |