recrownedgtk/RecrownedAthenaeum/DataTypes/ISpecialDrawable.cs

11 lines
304 B
C#
Raw Normal View History

using Microsoft.Xna.Framework;
using Microsoft.Xna.Framework.Graphics;
namespace RecrownedAthenaeum.DataTypes
{
public interface ISpecialDrawable
{
void Draw(SpriteBatch spriteBatch, Rectangle destination, Color color, float rotation = 0f, Vector2 origin = default(Vector2));
}
}