PINEditor.cs 184 B

12345678910
  1. namespace InABox.Core
  2. {
  3. public class PINEditor : BaseEditor
  4. {
  5. protected override BaseEditor DoClone()
  6. {
  7. return new PINEditor();
  8. }
  9. }
  10. }