blob: 1dc50634e9cb271be145b00560ef1dbb14fff05b (
plain)
1
2
3
4
5
6
7
8
9
10
|
#pragma once
#include "ZCollision.h"
#include "ZResource.h"
class ExporterExample_Collision : public ZResourceExporter
{
public:
void Save(ZResource* res, const fs::path& outPath, BinaryWriter* writer) override;
};
|