namespace Awperative;
///
/// Awperative hooks are the source of entry for scripts using Awperative. Create a hook and send into Start() to be recognized by the engine.
///
public interface AwperativeHook
{
///
/// Called when the program starts; It is not recommended you load assets here.
///
public void Initialize() {}
///
/// Called when the program closes.
///
public void Terminate() {}
///
/// Called when Awperative loads content.
///
public void Load() {}
}