namespace LemonUI { /// /// Interface for classes that have values that need to be recalculated on resolution changes. /// public interface IRecalculable { /// /// Recalculates the values. /// void Recalculate(); } }