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 に変換できないことがわかります。