ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/RomCheater/trunk/RomCheater.PluginFramework/Core/WindowPlugin.cs
Revision: 79
Committed: Wed May 9 17:15:33 2012 UTC (11 years, 4 months ago) by william
File size: 293 byte(s)
Log Message:
add abstract plugin classes (these are just stubs for now)

File Contents

# User Rev Content
1 william 79 using System;
2     using System.Collections.Generic;
3     using System.Linq;
4     using System.Text;
5    
6     namespace RomCheater.PluginFramework.Core
7     {
8     /// <summary>
9     /// Base class for all window plugins
10     /// </summary>
11     public abstract class WindowPlugin : PluginBase
12     {
13     }
14     }