Hello.
I’m just starting to learn how to devvvvelope.
I have found that _Samples folder had been deleted from SVN.
Am I right that now a plugin become much simpler?
All plugins in SVN have:
public class SomePlugin: IPlugin, IDisposable
public void SetPluginHost(IPluginHost Host)
public bool AutoEvaluate
public static IPluginInfo PluginInfo
etc
and now there is just (see below) in Template:
public class MyPlugin : IPluginEvaluate
{
// Input/Output
public void Evaluate(int SpreadMax)
{
//...
}
}
Thanks in advance