Revision: | 79 |
Committed: | Wed May 9 17:15:33 2012 UTC (11 years ago) by william |
File size: | 300 byte(s) |
Log Message: | add abstract plugin classes (these are just stubs for now) |
# | Content |
---|---|
1 | 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 configuration plugins |
10 | /// </summary> |
11 | public abstract class ConfigPlugin : PluginBase |
12 | { |
13 | } |
14 | } |