Rename to Torch, add command system

This commit is contained in:
John Gross
2016-12-17 01:59:03 -08:00
parent 7d51ac9295
commit fb521abbda
85 changed files with 366 additions and 354 deletions

View File

@@ -0,0 +1,20 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace PistonAPI
{
public class PluginAttribute : Attribute
{
public string Name { get; }
public bool Reloadable { get; }
public PluginAttribute(string name, bool reloadable = false)
{
Name = name;
Reloadable = reloadable;
}
}
}