1
0
forked from akanyan/mu3-mods

add offgeki

This commit is contained in:
2025-04-01 22:58:19 -06:00
parent 8c58151b81
commit bcaccca46b
12 changed files with 645 additions and 0 deletions

View File

@ -0,0 +1,16 @@
using MU3.Util;
namespace MU3.Battle;
class patch_EnemyManager : EnemyManager
{
extern void orig_playEnemyDamageUI(DamageParam dp);
public new void playEnemyDamageUI(DamageParam dp)
{
Mod.State state = Singleton<Mod.State>.instance;
if (!state.RemoveEnemy && !state.RemoveBullets)
{
orig_playEnemyDamageUI(dp);
}
}
}