rename EffectManager

This commit is contained in:
Gered 2013-08-22 22:54:45 -04:00
parent d6cbc2bf98
commit 018e19b25f

View file

@ -3,13 +3,13 @@ using System.Collections.Generic;
namespace Blarg.GameFramework.Graphics.ScreenEffects
{
public class EffectManager : IDisposable
public class ScreenEffectManager : IDisposable
{
LinkedList<EffectInfo> _effects;
int _numLocalEffects;
int _numGlobalEffects;
public EffectManager()
public ScreenEffectManager()
{
_effects = new LinkedList<EffectInfo>();
_numLocalEffects = 0;