我试图在不同于 Game1 类的类中使用 GraphicsDeviceManager,无论我是否初始化它,它都会给我一个错误。这是我正在做的一个示例:
public class ClassB : ClassC
{
GraphicsDeviceManager graphics;
public ClassB()
{
graphics = new GraphicsDeviceManager(this);//This is where I am getting an error
}
}
它告诉我它无法将此类转换为 Microsoft.Xna.Framework.Game。