aboutsummaryrefslogtreecommitdiffstats
path: root/code/event
diff options
context:
space:
mode:
Diffstat (limited to 'code/event')
-rw-r--r--code/event/MurderEvent.cs13
1 files changed, 13 insertions, 0 deletions
diff --git a/code/event/MurderEvent.cs b/code/event/MurderEvent.cs
new file mode 100644
index 0000000..aed2a80
--- /dev/null
+++ b/code/event/MurderEvent.cs
@@ -0,0 +1,13 @@
+using Sandbox;
+
+namespace MurderGame;
+
+public static class MurderEvent
+{
+ public const string Kill = "kill";
+
+ public class KillAttribute : EventAttribute
+ {
+ public KillAttribute() : base( Kill ) { }
+ }
+}