Initial commit

This commit is contained in:
2025-01-01 14:43:35 -06:00
commit 9659fb6086
12 changed files with 648 additions and 0 deletions

8
src/CommandAttribute.cs Normal file
View File

@@ -0,0 +1,8 @@
namespace Cogwheel;
[AttributeUsage(AttributeTargets.Method, AllowMultiple = true)]
public class CommandAttribute : Attribute
{
public string Name = "";
public string Description = "";
}