forked from akanyan/mu3-mods
17 lines
382 B
C#
17 lines
382 B
C#
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);
|
|
}
|
|
}
|
|
}
|