Files
doom-dm/Engine/src/Graphics/Camera/ScreenspaceCamera.cs
2025-01-07 06:25:09 +03:00

18 lines
395 B
C#

using OpenTK.Mathematics;
namespace Engine.Graphics.Camera;
/// <summary>
/// Represents a camera that uses a screenspace projection.
/// </summary>
public class ScreenspaceCamera : ICamera
{
/// <inheritdoc/>
public Matrix4 View => Matrix4.Identity;
/// <inheritdoc/>
public Matrix4 Projection => Matrix4.Identity;
/// <inheritdoc/>
public Vector2i ScreenSize { get; set; }
}