mirror of
https://github.com/HarbourMasters/Shipwright.git
synced 2024-11-01 08:05:07 -04:00
11 lines
238 B
C
11 lines
238 B
C
|
#pragma once
|
||
|
|
||
|
#include "Utils/BinaryWriter.h"
|
||
|
#include "ZResource.h"
|
||
|
#include "ZTexture.h"
|
||
|
|
||
|
class ExporterExample_Texture : public ZResourceExporter
|
||
|
{
|
||
|
public:
|
||
|
void Save(ZResource* res, fs::path outPath, BinaryWriter* writer) override;
|
||
|
};
|