diff --git a/RecrownedAthenaeum/DataTypes/ISpecialDrawable.cs b/RecrownedAthenaeum/DataTypes/ISpecialDrawable.cs new file mode 100644 index 0000000..a6fa776 --- /dev/null +++ b/RecrownedAthenaeum/DataTypes/ISpecialDrawable.cs @@ -0,0 +1,15 @@ +using Microsoft.Xna.Framework; +using Microsoft.Xna.Framework.Graphics; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace RecrownedAthenaeum.DataTypes +{ + public interface ISpecialDrawable + { + void Draw(SpriteBatch spriteBatch, Rectangle destination, Color color, float rotation = 0f, Vector2 origin = default(Vector2)); + } +}