UnityEssentials
Small but useful tools and features for Unity
IAdjustment.cs
Go to the documentation of this file.
2 {
6  public interface IAdjustment
7  {
8  string title { get; }
9  string applyButtonText { get; }
10  string revertButtonText { get; }
11  void Apply();
12  void Revert();
15 
16  string infoButtonText { get; }
17  public abstract string infoURL { get; }
18  public bool showInSettingsWindow { get; }
19  void OpenInfoURL();
20  }
21 }
Interface integrating all the basic elements that an adjustment that can be managed in the "Essential...
Definition: IAdjustment.cs:7