1
0
mirror of https://github.com/soarqin/DSP_Mods.git synced 2025-12-09 02:53:29 +08:00

fix profile support

This commit is contained in:
2025-03-26 02:15:44 +08:00
parent adcce8e298
commit 092795cbac
4 changed files with 84 additions and 22 deletions

View File

@@ -13,9 +13,9 @@ public class PatchGuidAttribute(string guid) : Attribute
public enum PatchCallbackFlag
{
// OnEnable() is called After patch is applied by default, set this flag to call it before patch is applied
// By default, OnEnable() is called After patch applied, set this flag to call it before patch is applied
CallOnEnableBeforePatch,
// OnDisable() is called Before patch is removed by default, set this flag to call it after patch is removed
// By default, OnDisable() is called Before patch removed, set this flag to call it after patch is removed
CallOnDisableAfterUnpatch,
}