ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/RomCheater/trunk/RomCheater.PluginFramework/Core/WindowPlugin.cs
(Generate patch)

Comparing trunk/RomCheater.PluginFramework/Core/WindowPlugin.cs (file contents):
Revision 85 by william, Wed May 9 17:48:15 2012 UTC vs.
Revision 86 by william, Wed May 9 19:41:06 2012 UTC

# Line 11 | Line 11 | namespace RomCheater.PluginFramework.Cor
11      /// </summary>
12      public abstract class WindowPlugin : PluginBase, IWindowPlugin
13      {
14 +        public WindowPlugin() : base() { }
15 +        public override Guid Id
16 +        {
17 +            get { return new Guid(); }
18 +        }
19 +        public override string Name
20 +        {
21 +            get
22 +            {
23 +                return "Unknown Window Plugin";
24 +            }
25 +        }
26 +        public override string Description
27 +        {
28 +            get
29 +            {
30 +                return "";
31 +            }
32 +        }
33      }
34   }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines