From e846c64d6f927879cb8a095e62d773a8d7b3c9f4 Mon Sep 17 00:00:00 2001 From: chai Date: Thu, 15 Oct 2020 07:24:10 +0800 Subject: *ability system --- .../Interface/IInspectorRunning.cs | 29 ++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 Assets/Plugins/AdvancedInspector/Interface/IInspectorRunning.cs (limited to 'Assets/Plugins/AdvancedInspector/Interface/IInspectorRunning.cs') diff --git a/Assets/Plugins/AdvancedInspector/Interface/IInspectorRunning.cs b/Assets/Plugins/AdvancedInspector/Interface/IInspectorRunning.cs new file mode 100644 index 00000000..c2038537 --- /dev/null +++ b/Assets/Plugins/AdvancedInspector/Interface/IInspectorRunning.cs @@ -0,0 +1,29 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; + +namespace AdvancedInspector +{ + /// + /// When implementing this, gives the object ability to draw the header and footer of the Inspector's space. + /// + public interface IInspectorRunning + { + /// + /// Draw at the top of the inspector, in this order; + /// - This + /// - Class Helpbox + /// - Tabs + /// rest of the fields + /// + void OnHeaderGUI(); + + /// + /// Draw at the bottom of the inspector, in this order; + /// - Helpbox + /// - This + /// + void OnFooterGUI(); + } +} \ No newline at end of file -- cgit v1.1-26-g67d0