aboutsummaryrefslogtreecommitdiffstats
path: root/code/event/MurderEvent.cs
diff options
context:
space:
mode:
authorLeonardo Bishop <me@leonardobishop.com>2023-07-27 22:11:31 +0100
committerLeonardo Bishop <me@leonardobishop.com>2023-07-27 22:11:31 +0100
commit71db52c5443a7bf82d9a23a770994a42b043be04 (patch)
treef75f2605bb1bdc53842cd85c90d105dcc77e1c10 /code/event/MurderEvent.cs
Initial commit
Diffstat (limited to 'code/event/MurderEvent.cs')
-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 ) { }
+ }
+}