aboutsummaryrefslogtreecommitdiffstats
path: root/code/pawn/component/movement/BaseController.cs
diff options
context:
space:
mode:
Diffstat (limited to 'code/pawn/component/movement/BaseController.cs')
-rw-r--r--code/pawn/component/movement/BaseController.cs14
1 files changed, 0 insertions, 14 deletions
diff --git a/code/pawn/component/movement/BaseController.cs b/code/pawn/component/movement/BaseController.cs
deleted file mode 100644
index 02c0be1..0000000
--- a/code/pawn/component/movement/BaseController.cs
+++ /dev/null
@@ -1,14 +0,0 @@
-using Sandbox;
-
-namespace MurderGame;
-
-//TODO make spectatro a controller
-public abstract class BaseController
-{
- public virtual float SpeedMultiplier { get; set; } = 1;
-
- public abstract void Simulate(Player player);
-
- public abstract bool HasEvent(string eventName);
-
-}