Files
FlaxEngine/Source/Editor/CustomEditors/CustomEditorsUtil.h
2024-02-26 19:00:48 +01:00

18 lines
378 B
C++

// Copyright (c) 2012-2024 Wojciech Figat. All rights reserved.
#pragma once
#include "Engine/Scripting/ManagedCLR/MTypes.h"
/// <summary>
/// Helper utility class to quickly scan assemblies to gather metadata for custom editor feature.
/// </summary>
class CustomEditorsUtil
{
public:
#if USE_CSHARP
static MTypeObject* GetCustomEditor(MTypeObject* refType);
#endif
};