Files
FlaxEngine/Source/Editor/CustomEditors/CustomEditorsUtil.h
2021-01-02 14:28:49 +01:00

16 lines
370 B
C++

// Copyright (c) 2012-2021 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:
static MonoReflectionType* GetCustomEditor(MonoReflectionType* refType);
};