54 lines
1.3 KiB
C#
54 lines
1.3 KiB
C#
|
using Microsoft.Xna.Framework;
|
|||
|
using Microsoft.Xna.Framework.Graphics;
|
|||
|
using Microsoft.Xna.Framework.Input;
|
|||
|
using GUI.UIElements;
|
|||
|
|
|||
|
namespace GUI;
|
|||
|
|
|||
|
public class Game1 : Game
|
|||
|
{
|
|||
|
private GraphicsDeviceManager _graphics;
|
|||
|
private SpriteBatch _spriteBatch;
|
|||
|
private Button mainButton;
|
|||
|
|
|||
|
public Game1()
|
|||
|
{
|
|||
|
_graphics = new GraphicsDeviceManager(this);
|
|||
|
Content.RootDirectory = "Content";
|
|||
|
IsMouseVisible = true;
|
|||
|
}
|
|||
|
|
|||
|
protected override void Initialize()
|
|||
|
{
|
|||
|
mainButton = new Button(new Vector2(10.0f, 10.0f), new Vector2(80.0f, 40.0f), null, _graphics);
|
|||
|
|
|||
|
base.Initialize();
|
|||
|
}
|
|||
|
|
|||
|
protected override void LoadContent()
|
|||
|
{
|
|||
|
_spriteBatch = new SpriteBatch(GraphicsDevice);
|
|||
|
}
|
|||
|
|
|||
|
protected override void Update(GameTime gameTime)
|
|||
|
{
|
|||
|
if (GamePad.GetState(PlayerIndex.One).Buttons.Back == ButtonState.Pressed || Keyboard.GetState().IsKeyDown(Keys.Escape))
|
|||
|
Exit();
|
|||
|
|
|||
|
mainButton.Update(gameTime);
|
|||
|
|
|||
|
base.Update(gameTime);
|
|||
|
}
|
|||
|
|
|||
|
protected override void Draw(GameTime gameTime)
|
|||
|
{
|
|||
|
GraphicsDevice.Clear(Color.Black);
|
|||
|
|
|||
|
_spriteBatch.Begin();
|
|||
|
mainButton.Draw(_spriteBatch, gameTime);
|
|||
|
_spriteBatch.End();
|
|||
|
|
|||
|
base.Draw(gameTime);
|
|||
|
}
|
|||
|
}
|