据我了解, Program.cs 是XNA程序的入口点,因为它包含了 Main 方法。
在 Main 方法中,声明并初始化Game1(Game of child)实例。
Game1.cs 类的构造函数不涉及任何 ContentManager 初始化,但可以在构造函数中调用对象 Content 。这意味着 Main 方法和 Game1 构造函数之间的某处,内容对象已初始化但我不能在我的生活中找到任何文档在哪里以及如何发生。
答案 0 :(得分:0)
通常你的游戏的构造函数看起来像这样......
public Game1() : base()
{
...
}
所以发生了两件事之一......
对我而言,这似乎是非常基本的C#......
class Game
{
public ContentManager Content = new ContentManager();
...
}
在.Net中也有一些奇怪的位,他们会像......那样做...
ContentManager content;
public ContentManager Content
{
get
{
if(content == null)
InitialiseContentManager();
return content;
}
}