Rename to Torch, add command system
This commit is contained in:
20
Torch.API/PluginAttribute.cs
Normal file
20
Torch.API/PluginAttribute.cs
Normal 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;
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user