killapp/Assets/IFix/Editor/MyConfig.cs
“虞渠成” 471f4c8962 init
2025-11-18 09:18:48 +08:00

25 lines
447 B
C#

using IFix;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Reflection;
//1、配置类必须打[Configure]标签
//2、必须放Editor目录
[Configure]
public class MyConfig
{
[IFix]
static IEnumerable<Type> Hotfix
{
get
{
return (from type in Assembly.Load("Assembly-CSharp").GetTypes()
select type).ToList();
}
}
}