summaryrefslogtreecommitdiff
path: root/Thronefall_v1.0/Decompile/SettingsResetVideo.cs
blob: cd3bc2e460c33bb7ada5a2acfac376e8970c660f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
using UnityEngine;

public class SettingsResetVideo : MonoBehaviour
{
	public GameObject objToRefresh;

	public void ResetVideoSettings()
	{
		SettingsManager.Instance.ResetVideoSettings();
		objToRefresh.SetActive(value: false);
		objToRefresh.SetActive(value: true);
	}
}