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/GUI/buttonSprites.cs

17 lines
466 B
C#

using Microsoft.Xna.Framework.Graphics;
namespace Galactic_Colors_Control_GUI.GUI
{
public struct buttonSprites
{
public Texture2D topLeft;
public Texture2D topCenter;
public Texture2D topRight;
public Texture2D centerLeft;
public Texture2D centerCenter;
public Texture2D centerRight;
public Texture2D bottomLeft;
public Texture2D bottomCenter;
public Texture2D bottomRight;
}
}