MoonWorksMultiWindowTest/src/Graphics/GraphicsObjects.cs

23 lines
388 B
C#
Raw Normal View History

2022-02-09 01:38:20 +00:00
using MoonWorks.Graphics;
namespace MoonWorksMultiWindow.Graphics
{
2022-02-25 06:07:35 +00:00
public class GraphicsObjects
{
public RenderTargets RenderTargets { get; }
2022-02-09 01:38:20 +00:00
2022-02-25 06:07:35 +00:00
public GraphicsObjects(
GraphicsDevice graphicsDevice,
uint renderDimensionsX,
uint renderDimensionsY
)
{
RenderTargets = new RenderTargets(
graphicsDevice,
renderDimensionsX,
renderDimensionsY
);
}
}
2022-02-09 01:38:20 +00:00
}