Stardew_Valley_Mods/GeneralMods/Revitalize/Framework/Configs/ConfigManager.cs

25 lines
600 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Revitalize.Framework.Configs
{
/// <summary>
/// Handles holding all of the config information.
/// </summary>
public class ConfigManager
{
/// <summary>
/// The config file for vanilla machine recipes.
/// </summary>
public VanillaMachineRecipeConfig vanillaMachineConfig;
public ConfigManager()
{
this.vanillaMachineConfig = VanillaMachineRecipeConfig.InitializeConfig();
}
}
}