initial file creation

This commit is contained in:
mccarreon
2023-08-03 19:34:23 -07:00
parent 39b9f71801
commit 4a338d9502
2 changed files with 66 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
using Sandbox;
namespace LuckerGame.Components.Lucker.Cameras;
public partial class FixedCamera : AbstractCamera, ISingletonComponent
{
public override void BuildInput()
{
throw new System.NotImplementedException();
}
protected override void UpdateCameraParameters()
{
throw new System.NotImplementedException();
}
}