FNA-VSCode-Template/project_name/Game1.cs
2018-10-06 20:42:24 -04:00

38 lines
779 B
C#

using System;
using Microsoft.Xna.Framework;
namespace project_name
{
class Game1 : Game
{
GraphicsDeviceManager graphics;
public Game1()
{
graphics = new GraphicsDeviceManager(this);
Content.RootDirectory = "Content";
}
override protected void Initialize()
{
base.Initialize();
}
override protected void LoadContent()
{
base.LoadContent();
}
override protected void Update(GameTime gameTime)
{
base.Update(gameTime);
}
override protected void Draw(GameTime gameTime)
{
GraphicsDevice.Clear(Color.CornflowerBlue);
base.Draw(gameTime);
}
}
}