MoonWorksMultiWindowTest/src/Graphics/GraphicsObjects.cs

23 lines
388 B
C#

using MoonWorks.Graphics;
namespace MoonWorksMultiWindow.Graphics
{
public class GraphicsObjects
{
public RenderTargets RenderTargets { get; }
public GraphicsObjects(
GraphicsDevice graphicsDevice,
uint renderDimensionsX,
uint renderDimensionsY
)
{
RenderTargets = new RenderTargets(
graphicsDevice,
renderDimensionsX,
renderDimensionsY
);
}
}
}