mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-04-24 01:24:07 +00:00
13 lines
356 B
C++
13 lines
356 B
C++
#include "DLCCapeFile.h"
|
|
|
|
#include "DLCManager.h"
|
|
#include "app/common/DLC/DLCFile.h"
|
|
#include "app/linux/LinuxGame.h"
|
|
|
|
DLCCapeFile::DLCCapeFile(const std::string& path)
|
|
: DLCFile(DLCManager::e_DLCType_Cape, path) {}
|
|
|
|
void DLCCapeFile::addData(std::uint8_t* pbData, std::uint32_t dataBytes) {
|
|
app.AddMemoryTextureFile(m_path, pbData, dataBytes);
|
|
}
|