Updated enemies. Added boost.

This commit is contained in:
2025-12-20 21:51:24 -05:00
parent f7e3fe0a47
commit ecdc501752
10 changed files with 464 additions and 279 deletions

View File

@@ -0,0 +1,13 @@
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;
}