Created
February 2, 2015 00:05
-
-
Save EusthEnoptEron/eb777d766632aa63ec81 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using IllusionPlugin; | |
using System; | |
using System.Collections.Generic; | |
using System.Text; | |
namespace IPluginBoilerplate | |
{ | |
public class MyPlugin : IPlugin | |
{ | |
public void OnApplicationQuit() | |
{ | |
Console.WriteLine("QUIT"); | |
} | |
public void OnApplicationStart() | |
{ | |
Console.WriteLine("START"); | |
} | |
public void OnLevelWasLoaded(int level) | |
{ | |
Console.WriteLine("LEVEL " + level); | |
} | |
public bool Debug | |
{ | |
get { return true; } | |
} | |
public void OnLevelWasInitialized(int level) | |
{ | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment