using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace TheraBytes.BetterUi { /// /// Implemnent this interface if your object should do some recalculations on resolution change. /// The OnResolutionChanged() method will be automatically called by the ResolutionMonitor. /// public interface IResolutionDependency { void OnResolutionChanged(); } }