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

@@ -35,11 +35,11 @@ namespace Content.Client.Research
private List<LatheRecipePrototype> _recipes = new List<LatheRecipePrototype>();
private List<LatheRecipePrototype> _shownRecipes = new List<LatheRecipePrototype>();
public LatheMenu(IDisplayManager displayMan) : base(displayMan)
public LatheMenu()
{
}
public LatheMenu(IDisplayManager displayMan, string name) : base(displayMan, name)
public LatheMenu(string name) : base(name)
{
}