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();
}
}