diff --git a/Blarg.GameFramework/Graphics/ScreenEffects/ScreenEffectManager.cs b/Blarg.GameFramework/Graphics/ScreenEffects/ScreenEffectManager.cs index dc93ae9..629909d 100644 --- a/Blarg.GameFramework/Graphics/ScreenEffects/ScreenEffectManager.cs +++ b/Blarg.GameFramework/Graphics/ScreenEffects/ScreenEffectManager.cs @@ -46,6 +46,16 @@ namespace Blarg.GameFramework.Graphics.ScreenEffects return effect; } + public T AddLocal() where T : ScreenEffect + { + return Add(true); + } + + public T AddGlobal() where T : ScreenEffect + { + return Add(false); + } + public void Remove() where T : ScreenEffect { var type = typeof(T);