interface added for all the possible special drawable objects.
This commit is contained in:
parent
8ddb79c135
commit
28d4f48b51
15
RecrownedAthenaeum/DataTypes/ISpecialDrawable.cs
Normal file
15
RecrownedAthenaeum/DataTypes/ISpecialDrawable.cs
Normal 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));
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user