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.

30 lines
889 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 IMovable
  14. {
  15. /* ----- TODO: ----------------------------
  16. *
  17. * --------------------------------------*/
  18. /// <summary>
  19. /// Sets the position of the module.
  20. /// </summary>
  21. /// <param name="newModulePosition">
  22. /// The new position of the module.
  23. /// </param>
  24. void SetPosition(GraphyManager.ModulePosition newModulePosition);
  25. }
  26. }