using System; using System.Collections.Generic; using System.Linq; using System.Text; using RomCheater.Interfaces; namespace RomCheater.PluginFramework.Core { /// /// Base class for all window plugins /// public abstract class WindowPlugin : PluginBase, IWindowPlugin { public WindowPlugin() : base() { } public override bool IsGenericPlugin { get { return false; } } public override bool IsNullPlugin { get { return false; } } public override Guid ID { get { return new Guid(); } } public override string Name { get { return "Unknown Window Plugin"; } } public override string Description { get { return ""; } } public override void Reload() { } public override void Reload(bool silent) { } } }