You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
using System;
|
|
using DotNetCTFDumper.MMFParser.EXE;
|
|
using DotNetCTFDumper.PluginAPI;
|
|
|
|
namespace ExamplePlugin
|
|
{
|
|
public class ExamplePlugin:IPlugin
|
|
{
|
|
public object Activate(object input)
|
|
{
|
|
var data = (GameData) input;
|
|
PluginAPI.Message(data.TargetFilename);
|
|
return null;
|
|
}
|
|
|
|
}
|
|
} |