17 lines
333 B
C#
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();
|
|
}
|
|
}
|