14 lines
No EOL
284 B
C#
14 lines
No EOL
284 B
C#
// WingsEmu
|
|
//
|
|
// Developed by NosWings Team
|
|
|
|
namespace WingsAPI.Plugins
|
|
{
|
|
public interface IGamePlugin : IPlugin
|
|
{
|
|
/// <summary>
|
|
/// Called when this plugin is loaded but before it has been enabled
|
|
/// </summary>
|
|
void OnLoad();
|
|
}
|
|
} |