IButtonEditor.cs 235 B

123456789101112131415
  1. using System;
  2. namespace InABox.Core
  3. {
  4. public interface IButtonGenerator
  5. {
  6. EditorButton[]? Generate();
  7. }
  8. public interface IButtonEditor : IBaseEditor
  9. {
  10. Type Buttons { get; set; }
  11. }
  12. }