Goran Lazarevski 92f99a37dd
Some checks failed
Unreal Engine Build / windows-build (push) Has been cancelled
Unreal Engine Build / macos-build (push) Has been cancelled
Lucky World source code
2025-03-18 19:25:25 +01:00

29 lines
770 B
C++

#pragma once
#include "CoreMinimal.h"
#include "UObject/Object.h"
#include "Exporters/Exporter.h"
#include "tinyxml2.h"
#include "Misc/MujocoOptions.h"
#include "MujocoExporter.generated.h"
UCLASS()
class UMujocoExporter final : public UExporter
{
GENERATED_BODY()
public:
UMujocoExporter();
virtual bool ExportText(const class FExportObjectInnerContext* Context, UObject* Object, const TCHAR* Type, FOutputDevice& Ar, FFeedbackContext* Warn, uint32 PortFlags = 0);
};
UCLASS()
class UMujocoLevelExporter final : public UExporter
{
GENERATED_BODY()
public:
UMujocoLevelExporter();
virtual bool ExportText(const class FExportObjectInnerContext* Context, UObject* Object, const TCHAR* Type, FOutputDevice& Ar, FFeedbackContext* Warn, uint32 PortFlags = 0);
};