mirror of
https://github.com/HarbourMasters/Shipwright.git
synced 2025-02-07 19:00:37 -05:00
15 lines
338 B
C
15 lines
338 B
C
![]() |
#pragma once
|
||
|
|
||
|
#include "ZResource.h"
|
||
|
#include "ZTexture.h"
|
||
|
#include "ZDisplayList.h"
|
||
|
#include "ZSkeleton.h"
|
||
|
#include "ZLimb.h"
|
||
|
#include "Exporter.h"
|
||
|
#include <Utils/BinaryWriter.h>
|
||
|
|
||
|
class OTRExporter_SkeletonLimb : public OTRExporter
|
||
|
{
|
||
|
public:
|
||
|
virtual void Save(ZResource* res, const fs::path& outPath, BinaryWriter* writer) override;
|
||
|
};
|