aboutsummaryrefslogtreecommitdiffstats
path: root/code/event/MurderEvent.cs
blob: e19740322530797ba9d598fd42efb7de49bc9122 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
using Sandbox;

namespace MurderGame;

public static class MurderEvent
{
	public const string Kill = "kill";

	public class KillAttribute : EventAttribute
	{
		public KillAttribute() : base( Kill ) { }
	}
}