e450658834
Old `mono` backend was not maintained for since 1.7 (July 2023) `dotnet` backend still can run `mono` on AOT platforms but with the latest .NET features.
18 lines
353 B
C++
18 lines
353 B
C++
// Copyright (c) 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 MType* GetCustomEditor(MType* type);
|
|
#endif
|
|
};
|