mirror of
https://github.com/Royce551/Water.git
synced 2025-01-22 10:52:00 -05:00
41 lines
No EOL
802 B
C#
41 lines
No EOL
802 B
C#
using Microsoft.Xna.Framework;
|
|
using Microsoft.Xna.Framework.Graphics;
|
|
using Microsoft.Xna.Framework.Input;
|
|
using TestGame.Screens;
|
|
using Water;
|
|
|
|
namespace TestGame
|
|
{
|
|
public class Game1 : WaterGame
|
|
{
|
|
public override string ProjectName => "nyaa";
|
|
|
|
public Game1() : base()
|
|
{
|
|
}
|
|
|
|
protected override void Initialize()
|
|
{
|
|
|
|
Screen.InsertScreen(0, new TestScreen());
|
|
base.Initialize();
|
|
}
|
|
|
|
protected override void LoadContent()
|
|
{
|
|
base.LoadContent();
|
|
}
|
|
|
|
protected override void Update(GameTime gameTime)
|
|
{
|
|
|
|
base.Update(gameTime);
|
|
}
|
|
|
|
protected override void Draw(GameTime gameTime)
|
|
{
|
|
|
|
base.Draw(gameTime);
|
|
}
|
|
}
|
|
} |