Parent Directory
|
Revision Log
|
Patch
--- trunk/RomCheater.CheatPlugin/CheatCodePlugin.cs 2013/05/28 18:39:39 439 +++ trunk/RomCheater.CheatPlugin/CheatCodePlugin.cs 2013/05/28 19:10:10 440 @@ -3,6 +3,7 @@ using System.Linq; using System.Text; using RomCheater.PluginFramework.Core; +using WeifenLuo.WinFormsUI.Docking; namespace RomCheater.CheatPlugin { @@ -35,5 +36,26 @@ public override void Reload(bool silent) { } + + public override void Config() + { + Logging.logger.Warn.WriteLine("This plugin has no configurable settings."); + } + + public override void Show() + { + var t = new CheatCodeDockContent(); + t.Show(); + } + public override void Show(DockPanel dockPanel) + { + var t = new CheatCodeDockContent(); + t.Show(dockPanel); + } + public override void Show(DockPanel dockPanel, DockState dockState) + { + var t = new CheatCodeDockContent(); + t.Show(dockPanel, dockState); + } } }
ViewVC Help | |
Powered by ViewVC 1.1.22 |