You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

28 lines
852 B

  1. /* ---------------------------------------
  2. * Author: Martin Pane (martintayx@gmail.com) (@tayx94)
  3. * Collaborators: Lars Aalbertsen (@Rockylars)
  4. * Project: Graphy - Ultimate Stats Monitor
  5. * Date: 03-Jan-18
  6. * Studio: Tayx
  7. *
  8. * This project is released under the MIT license.
  9. * Attribution is not required, but it is always welcomed!
  10. * -------------------------------------*/
  11. namespace Tayx.Graphy.UI
  12. {
  13. public interface IModifiableState
  14. {
  15. /* ----- TODO: ----------------------------
  16. * --------------------------------------*/
  17. /// <summary>
  18. /// Set the module state.
  19. /// </summary>
  20. /// <param name="newState">
  21. /// The new state.
  22. /// </param>
  23. void SetState(GraphyManager.ModuleState newState, bool silentUpdate);
  24. }
  25. }