ScaleHandle.cs 449 B

1234567891011121314151617181920212223242526272829303132
  1. using BansheeEngine;
  2. namespace BansheeEditor
  3. {
  4. public sealed class ScaleHandle : DefaultHandle
  5. {
  6. public ScaleHandle()
  7. {
  8. }
  9. internal override bool IsDragged()
  10. {
  11. return false;
  12. }
  13. protected override void PreInput()
  14. {
  15. }
  16. protected override void PostInput()
  17. {
  18. }
  19. protected override void Draw()
  20. {
  21. }
  22. }
  23. }