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.cs9
1 files changed, 9 insertions, 0 deletions
diff --git a/code/pawn/component/movement/BaseController.cs b/code/pawn/component/movement/BaseController.cs
new file mode 100644
index 0000000..0b92c75
--- /dev/null
+++ b/code/pawn/component/movement/BaseController.cs
@@ -0,0 +1,9 @@
+using Sandbox;
+
+namespace MurderGame;
+
+//TODO make spectatro a controller
+public class BaseController : EntityComponent<Player>
+{
+ public Player Player { get; set; }
+}