namespace Engine.Core;
///
/// Represents a camera with view and projections matrices in the engine.
///
public interface ICamera
{
///
/// View of the .
///
Matrix4x4 ViewMatrix { get; }
///
/// Projection of the .
///
Matrix4x4 ProjectionMatrix { get; }
}