DurationEditor.cs 336 B

1234567891011121314151617
  1. namespace InABox.Core
  2. {
  3. public class DurationEditor : BaseEditor
  4. {
  5. public DurationEditor()
  6. {
  7. Alignment = Alignment.MiddleCenter;
  8. Width = 70;
  9. }
  10. protected override BaseEditor DoClone()
  11. {
  12. return new DurationEditor();
  13. }
  14. }
  15. }