using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using RomCheater.PluginFramework.Interfaces;
using System.Diagnostics;
namespace RomCheater.PluginFramework.Core
{
///
/// Base class for all configuration plugins
///
public abstract class ConfigPlugin : PluginBase, IConfigPlugin
{
#region IConfigPlugin Members
public List ValidProcessesForPlugin { get; protected set; }
#endregion
}
}