protected void SaveLoadout(ShipLoadoutData shipLoadout, ShipMenu shipMenu, string fileName)
    {
        shipMenu.GetSelections();
        SaveToLoadoutData(shipLoadout, shipMenu);

        File.WriteAllText(Database.savePath + fileName, shipLoadout.GetJson());
    }