Added sprite rotation and scale. Refactored bullet classes.

This commit is contained in:
2026-01-15 00:20:09 -05:00
parent 61d51f5188
commit 8e0a68efdf
25 changed files with 60 additions and 226 deletions

View File

@@ -1,7 +1,6 @@
using AlienAttack.MonoGame.Textures;
using Microsoft.Xna.Framework.Content;
using Microsoft.Xna.Framework.Graphics;
using System;
namespace AlienAttack.MonoGame.Things;
@@ -10,4 +9,5 @@ public class SpriteDrawArgs(AlienAttackGame game)
public SpriteBatch SpriteBatch => game.SpriteBatch;
public ContentManager Content => game.Content;
public TextureCache Textures => game.Textures;
public bool ShowCollisionBox { get; init; }
}