Files
alien-attack/AlientAttack.MonoGame/Things/SpriteDrawArgs.cs
2025-12-16 08:51:34 -05:00

11 lines
297 B
C#

using Microsoft.Xna.Framework.Content;
using Microsoft.Xna.Framework.Graphics;
using System;
namespace AlienAttack.MonoGame.Things;
public class SpriteDrawArgs(AlienAttackGame game)
{
public SpriteBatch SpriteBatch => game.SpriteBatch;
public ContentManager Content => game.Content;
}