Fix compiler warnings and remove dead code.

This commit is contained in:
Pieter-Jan Briers
2019-05-28 00:30:34 +02:00
parent 996b45a04f
commit 9c3587b00e
12 changed files with 15 additions and 37 deletions

View File

@@ -252,15 +252,5 @@ namespace Content.Client.UserInterface
esm.GetEntitySystem<VerbSystem>().OpenContextMenu(entity, new ScreenCoordinates(args.GlobalPosition));
}
}
private static ISpriteProxy GetSpriteMirror(IEntity entity)
{
if (entity.TryGetComponent(out ISpriteComponent component))
{
return component.CreateProxy();
}
return null;
}
}
}