上QQ阅读APP看书,第一时间看更新
Initialization
Once the instance of the Game1
class has been created and the constructor has been executed, the Initialize()
method is executed. This is the only time during our game's execution that this method will execute, and it is responsible for setting up anything in our class that does not require the use of content assets.
The default Initialize()
method is empty and simply calls the base class' Initialize()
method before exiting.