ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/RomCheater/trunk/RomCheater.PluginFramework/Core/InputPlugin.cs
Revision: 94
Committed: Wed May 9 22:31:56 2012 UTC (11 years, 1 month ago) by william
File size: 784 byte(s)
Log Message:

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 /// <summary>
10 /// Base class for all input plugins
11 /// </summary>
12 public abstract class InputPlugin : PluginBase, IInputPlugin
13 {
14 public InputPlugin() : 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 Input Plugin";
24 }
25 }
26 public override string Description
27 {
28 get
29 {
30 return "";
31 }
32 }
33 }
34 }