1
0
Fork 0
This repository has been archived on 2019-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
Galactic_Colors_Control/Galactic Colors Control GUI/States/OptionsState.cs

17 lines
385 B
C#

using Microsoft.Xna.Framework.Graphics;
namespace Galactic_Colors_Control_GUI.States
{
public class OptionsState : State
{
public override void Draw(SpriteBatch spritebatch)
{
Game.singleton.background.Draw(spritebatch);
}
public override void Update()
{
Game.singleton.background.Update();
}
}
}