Created
December 22, 2013 20:35
-
-
Save TinkerWorX/8088092 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
| public abstract class GamePluginBase : MarshalByRefObject | |
| { | |
| protected IGameAPI Game { get; private set; } | |
| protected INatives Natives { get; private set; } | |
| public abstract String Name { get; } | |
| public abstract Version Version { get; } | |
| public abstract void Initialize(); | |
| internal void SetGameAPI(IGameAPI api) | |
| { | |
| this.Game = api; | |
| } | |
| internal void SetNativeAPI(INatives api) | |
| { | |
| this.Natives = api; | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment