Renamed ItemManager to ItemEffectManager

This commit is contained in:
Collin Smith 2020-05-30 16:16:51 -07:00
parent 6860d8cba1
commit e1443d0acf
2 changed files with 3 additions and 3 deletions

View File

@ -9,7 +9,7 @@ import com.riiablo.engine.client.component.AnimationWrapper;
import com.riiablo.engine.server.component.Item;
@All({Item.class, AnimationWrapper.class})
public class ItemManager extends BaseEntitySystem {
public class ItemEffectManager extends BaseEntitySystem {
protected ComponentMapper<Item> mItem;
protected ComponentMapper<AnimationWrapper> mAnimationWrapper;

View File

@ -57,7 +57,7 @@ import com.riiablo.engine.client.DialogManager;
import com.riiablo.engine.client.DirectionResolver;
import com.riiablo.engine.client.HoveredManager;
import com.riiablo.engine.client.ItemLoader;
import com.riiablo.engine.client.ItemManager;
import com.riiablo.engine.client.ItemEffectManager;
import com.riiablo.engine.client.LabelManager;
import com.riiablo.engine.client.MenuManager;
import com.riiablo.engine.client.MissileLoader;
@ -583,7 +583,7 @@ public class GameScreen extends ScreenAdapter implements GameLoadingScreen.Loada
.with(new LabelManager())
.with(new MonsterLabelManager())
.with(new ItemManager())
.with(new ItemEffectManager())
.with(new PathDebugger())
.with(new Box2DDebugger())