Nez
Introduction
Creating a New Project
public class Game1 : Core
{
protected override void Initialize()
{
base.Initialize();
Scene = new BasicScene();
}
protected override void Update(GameTime gameTime)
{
base.Update(gameTime);
}
protected override void Draw(GameTime gameTime)
{
base.Draw(gameTime);
}
}Last updated
Was this helpful?

