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 ); } } }