mirror of
https://github.com/libAthena/athena.git
synced 2025-12-09 05:27:50 +00:00
12 lines
214 B
C++
12 lines
214 B
C++
#include "Athena/MCSlot.hpp"
|
|
|
|
namespace Athena
|
|
{
|
|
|
|
MCSlot::MCSlot(std::unique_ptr<atUint8[]>&& data, atUint32 length)
|
|
: ZQuestFile(ZQuestFile::MC, Endian::LittleEndian, std::move(data), length)
|
|
{
|
|
}
|
|
|
|
} // Athena
|