| 1234567891011121314151617181920212223242526272829303132 |
- using BansheeEngine;
- namespace BansheeEditor
- {
- public sealed class ScaleHandle : DefaultHandle
- {
- public ScaleHandle()
- {
- }
- internal override bool IsDragged()
- {
- return false;
- }
- protected override void PreInput()
- {
- }
- protected override void PostInput()
- {
- }
- protected override void Draw()
- {
- }
- }
- }
|