aboutsummaryrefslogtreecommitdiffstats
path: root/code/pawn/component/camera/BaseCameraComponent.cs
diff options
context:
space:
mode:
Diffstat (limited to 'code/pawn/component/camera/BaseCameraComponent.cs')
-rw-r--r--code/pawn/component/camera/BaseCameraComponent.cs20
1 files changed, 20 insertions, 0 deletions
diff --git a/code/pawn/component/camera/BaseCameraComponent.cs b/code/pawn/component/camera/BaseCameraComponent.cs
new file mode 100644
index 0000000..be310c8
--- /dev/null
+++ b/code/pawn/component/camera/BaseCameraComponent.cs
@@ -0,0 +1,20 @@
+using Sandbox;
+
+namespace MurderGame;
+
+public class BaseCameraComponent : EntityComponent<Player>, ISingletonComponent
+{
+
+ public virtual void Simulate( IClient cl )
+ {
+
+ }
+ public virtual void FrameSimulate( IClient cl )
+ {
+
+ }
+ public virtual void BuildInput()
+ {
+
+ }
+}