KavTest/KavTest/Components/CameraComponent.cs

16 lines
291 B
C#

using Encompass;
using Microsoft.Xna.Framework;
namespace KavTest.Components
{
public struct CameraComponent : IComponent
{
public Matrix Projection { get; }
public CameraComponent(Matrix projection)
{
Projection = projection;
}
}
}