public AmGameBase() { Instance = this; graphics = new GraphicsDeviceManager(this); Content.RootDirectory = "Content"; IsMouseVisible = true; ScreenManager = new AmScreenManager(); }
public void Run() { gameBase = new AmGameBase(); gameBase.game = this; gameBase.Run(); }