13 lines
235 B
C#
13 lines
235 B
C#
using Microsoft.Xna.Framework;
|
|
|
|
namespace AlienAttack.MonoGame.Things.Stars;
|
|
|
|
internal struct Star
|
|
{
|
|
public Vector2 Pos;
|
|
public float Size;
|
|
public float Alpha;
|
|
|
|
public float TwinkleSpeed;
|
|
public float TwinkleT;
|
|
} |