mirror of
https://github.com/libAthena/athena.git
synced 2025-06-21 05:53:31 +00:00
9 lines
213 B
C++
9 lines
213 B
C++
#include "athena/MCSlot.hpp"
|
|
|
|
namespace athena {
|
|
|
|
MCSlot::MCSlot(std::unique_ptr<uint8_t[]>&& data, uint32_t length)
|
|
: ZQuestFile(ZQuestFile::MC, Endian::Little, std::move(data), length) {}
|
|
|
|
} // namespace athena
|