IResolutionDependency.cs 446 B

12345678910111213141516
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace TheraBytes.BetterUi
  6. {
  7. /// <summary>
  8. /// Implemnent this interface if your object should do some recalculations on resolution change.
  9. /// The OnResolutionChanged() method will be automatically called by the ResolutionMonitor.
  10. /// </summary>
  11. public interface IResolutionDependency
  12. {
  13. void OnResolutionChanged();
  14. }
  15. }