ScaleHandle.cs 359 B

123456789101112131415161718192021222324252627
  1. using BansheeEngine;
  2. namespace BansheeEditor
  3. {
  4. public sealed class ScaleHandle : DefaultHandle
  5. {
  6. public ScaleHandle()
  7. {
  8. }
  9. protected override void PreInput()
  10. {
  11. }
  12. protected override void PostInput()
  13. {
  14. }
  15. protected override void Draw()
  16. {
  17. }
  18. }
  19. }