PopupEditor.cs 329 B

12345678910111213141516
  1. using System;
  2. namespace InABox.Core
  3. {
  4. public class PopupEditor : DataLookupEditor
  5. {
  6. public PopupEditor(Type type, params string[] otherfields) : base(type, otherfields)
  7. {
  8. }
  9. protected override BaseEditor DoClone()
  10. {
  11. return CloneDataLookupEditor();
  12. }
  13. }
  14. }