10 lines
266 B
C#
10 lines
266 B
C#
namespace MyFirstPlugin
|
|
{
|
|
public static class MyPluginInfo
|
|
{
|
|
public const string PLUGIN_GUID = "UnlockAllRecipes";
|
|
public const string PLUGIN_NAME = "Unlock All Recipes";
|
|
public const string PLUGIN_VERSION = "1.0.0";
|
|
}
|
|
}
|