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

Comparing:
trunk/RomCheater.RVACalculator/RVACalculatorPlugin.cs (file contents), Revision 855 by william, Tue Sep 16 21:09:17 2014 UTC vs.
trunk/RomCheater.RVACalculator/RVACheatListPlugin.cs (file contents), Revision 856 by william, Tue Sep 16 21:23:53 2014 UTC

--- trunk/RomCheater.RVACalculator/RVACalculatorPlugin.cs	2014/09/16 21:09:17	855
+++ trunk/RomCheater.RVACalculator/RVACheatListPlugin.cs	2014/09/16 21:23:53	856
@@ -21,17 +21,17 @@ using RomCheater.PluginFramework.Core;
 using WeifenLuo.WinFormsUI.Docking;
 using Enterprise.Logging;
 
-namespace RomCheater.RVACalculator
+namespace RomCheater.RVACheatList
 {
-    public class RVACalculatorPlugin : UserControlPlugin
+    public class RVACheatListPlugin : UserControlPlugin
     {
-        private RVACalculatorDockControl t;
-        const string name = "RVA Calculator Plugin";
-        const string description = "A simple plugin to help calculate RVA values";
-        public RVACalculatorPlugin() : base() { t = new RVACalculatorDockControl(this); }
+        private RVACheatListDockControl t;
+        const string name = "RVA CheatList Plugin";
+        const string description = "A simple plugin to create a list of rva values associated with a particular cheat";
+        public RVACheatListPlugin() : base() { t = new RVACheatListDockControl(this); }
         public override Guid ID
         {
-            get { return AssemblyGuid.GetGuid(typeof(RVACalculatorPlugin)); }
+            get { return AssemblyGuid.GetGuid(typeof(RVACheatListPlugin)); }
             //get { return new Guid(); }
         }
         public override string Name