mirror of
https://github.com/Memorix101/UnityXNA/
synced 2024-12-30 15:25:35 +01:00
28 lines
544 B
C#
28 lines
544 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using Microsoft.Xna.Framework.Graphics;
|
|||
|
|
|||
|
namespace Microsoft.Xna.Framework
|
|||
|
{
|
|||
|
class GraphicsDeviceManager
|
|||
|
{
|
|||
|
private Game game;
|
|||
|
|
|||
|
public GraphicsDevice GraphicsDevice
|
|||
|
{
|
|||
|
get
|
|||
|
{
|
|||
|
return game.GraphicsDevice;
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
public GraphicsDeviceManager(Game game)
|
|||
|
{
|
|||
|
// TODO: Complete member initialization
|
|||
|
this.game = game;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|