Required by platforms that will use mono under the hood for .Net 7 New `USE_CSHARP` define for C# ability Engine doesn't use `mono_*` apis directly but via MCore/MClass/MMethod/ apis
18 lines
378 B
C++
18 lines
378 B
C++
// Copyright (c) 2012-2023 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
|
|
};
|