mirror of
https://github.com/libAthena/athena.git
synced 2025-05-14 03:11:26 +00:00
18 lines
246 B
C++
18 lines
246 B
C++
#ifndef MCSLOT_HPP
|
|
#define MCSLOT_HPP
|
|
|
|
#include "Athena/Global.hpp"
|
|
#include "Athena/ZQuestFile.hpp"
|
|
|
|
namespace Athena
|
|
{
|
|
class MCSlot : public ZQuestFile
|
|
{
|
|
public:
|
|
MCSlot(atUint8* data, atUint32 length);
|
|
};
|
|
|
|
} // Athena
|
|
|
|
#endif // MCSLOT_HPP
|