mirror of https://github.com/libAthena/athena.git
19 lines
367 B
C++
19 lines
367 B
C++
#pragma once
|
|
|
|
#include "athena/MemoryWriter.hpp"
|
|
|
|
namespace athena {
|
|
class SkywardSwordFile;
|
|
|
|
namespace io {
|
|
|
|
class SkywardSwordFileWriter : public MemoryCopyWriter {
|
|
public:
|
|
SkywardSwordFileWriter(atUint8* data, atUint64 len);
|
|
SkywardSwordFileWriter(const std::string& filename);
|
|
|
|
void write(SkywardSwordFile* file);
|
|
};
|
|
} // namespace io
|
|
} // namespace athena
|