mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-04-20 16:15:43 +00:00
12 lines
231 B
C++
12 lines
231 B
C++
#pragma once
|
|
|
|
#include "IPostProcessor.h"
|
|
|
|
class UnionsPostProcessor final : public IPostProcessor
|
|
{
|
|
static bool ProcessUnion(StructureInformation* info);
|
|
|
|
public:
|
|
bool PostProcess(IDataRepository* repository) override;
|
|
};
|