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