| 123456789101112131415161718192021222324252627 |
- using BansheeEngine;
- namespace BansheeEditor
- {
- public sealed class ScaleHandle : DefaultHandle
- {
- public ScaleHandle()
- {
- }
- protected override void PreInput()
- {
- }
- protected override void PostInput()
- {
- }
- protected override void Draw()
- {
- }
- }
- }
|