add Synapse System

This commit is contained in:
2023-10-20 12:33:18 +08:00
parent 56b5421290
commit ef721b227b
11 changed files with 576 additions and 10 deletions
+14
View File
@@ -0,0 +1,14 @@
using System;
namespace SimApi.Attributes;
[AttributeUsage(AttributeTargets.Method)]
public class SynapseEventAttribute : Attribute
{
public string Name { get; }
public SynapseEventAttribute(string name)
{
Name = name;
}
}