mirror of
https://github.com/Alee14/OpenHacknet.git
synced 2025-01-22 09:12:44 -05:00
30 lines
No EOL
612 B
C#
30 lines
No EOL
612 B
C#
using Microsoft.Xna.Framework;
|
|
using Microsoft.Xna.Framework.Graphics;
|
|
|
|
namespace Hacknet
|
|
{
|
|
public struct BackgroundObject
|
|
{
|
|
public Vector2 pos { get; set; }
|
|
|
|
public float Alpha { get; set; }
|
|
|
|
public float Rotation { get; set; }
|
|
|
|
public float VX { get; set; }
|
|
|
|
public float VY { get; set; }
|
|
|
|
public string SpritePath { get; set; }
|
|
|
|
public float XScale { get; set; }
|
|
|
|
public float YScale { get; set; }
|
|
|
|
public Texture2D Texture { get; set; }
|
|
|
|
public Color Colour { get; set; }
|
|
|
|
public float Z { get; set; }
|
|
}
|
|
} |