blob: c20385375302e2e9b6bbd90b1b6195466d153d5c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace AdvancedInspector
{
/// <summary>
/// When implementing this, gives the object ability to draw the header and footer of the Inspector's space.
/// </summary>
public interface IInspectorRunning
{
/// <summary>
/// Draw at the top of the inspector, in this order;
/// - This
/// - Class Helpbox
/// - Tabs
/// rest of the fields
/// </summary>
void OnHeaderGUI();
/// <summary>
/// Draw at the bottom of the inspector, in this order;
/// - Helpbox
/// - This
/// </summary>
void OnFooterGUI();
}
}
|