ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/RomCheater/trunk/RomCheater.PluginFramework/Core/UserControlPlugin.cs
Revision: 437
Committed: Tue May 28 18:08:23 2013 UTC (10 years, 6 months ago) by william
File size: 720 byte(s)
Log Message:
+ current wip for custom usercontrol plugins

File Contents

# Content
1 using System;
2 using System.Collections.Generic;
3 using System.Linq;
4 using System.Text;
5 using RomCheater.PluginFramework.Interfaces;
6
7 namespace RomCheater.PluginFramework.Core
8 {
9 public abstract class UserControlPlugin : PluginBase, IUserControlPlugin
10 {
11 public UserControlPlugin() { }
12
13 public override Guid ID
14 {
15 get { return new Guid(); }
16 }
17 public override string Name
18 {
19 get
20 {
21 return "Unknown UserControl Plugin";
22 }
23 }
24 public override string Description
25 {
26 get
27 {
28 return "";
29 }
30 }
31 }
32 }