Files
AwperativeKernel/Awperative/Kernel/Overhead/AwperativeClass.cs
2026-01-30 20:42:33 -05:00

17 lines
488 B
C#

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