NotesEditor.cs 487 B

1234567891011121314151617181920
  1. using System.Linq;
  2. using System.Text.RegularExpressions;
  3. namespace InABox.Core
  4. {
  5. public class NotesEditor : BaseEditor
  6. {
  7. public bool AlwaysEnabled { get; set; }
  8. protected override BaseEditor DoClone()
  9. {
  10. return new NotesEditor { AlwaysEnabled = AlwaysEnabled };
  11. }
  12. public static string FormatNotes(string[] notes)
  13. {
  14. return string.Join("\n===================================\n", notes);
  15. }
  16. }
  17. }