Files
LuckerGame/code/EntityComponents/Lucker/Cameras/FixedCamera.cs
2023-08-03 19:34:23 -07:00

17 lines
333 B
C#

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();
}
}