interface added for all the possible special drawable objects.

This commit is contained in:
Harrison Deng 2018-12-14 00:42:03 -06:00
parent 8ddb79c135
commit 28d4f48b51

View File

@ -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));
}
}