mirror of
https://github.com/libAthena/athena.git
synced 2025-05-13 10:51:34 +00:00
18 lines
266 B
C++
18 lines
266 B
C++
#ifndef MCSLOT_HPP
|
|
#define MCSLOT_HPP
|
|
|
|
#include "Athena/Global.hpp"
|
|
#include "Athena/ZQuestFile.hpp"
|
|
|
|
namespace Athena
|
|
{
|
|
class MCSlot : public ZQuestFile
|
|
{
|
|
public:
|
|
MCSlot(std::unique_ptr<atUint8[]>&& data, atUint32 length);
|
|
};
|
|
|
|
} // Athena
|
|
|
|
#endif // MCSLOT_HPP
|