Czoko_Smieciarka/Trunk/MonoGameView/DataModels/Interfaces/IDrawables.cs
2019-05-14 23:05:37 +02:00

12 lines
285 B
C#

using Microsoft.Xna.Framework.Content;
using Microsoft.Xna.Framework.Graphics;
using System;
namespace CzokoŚmieciarka.MonoGameView.DataModels.Interfaces
{
public interface IDrawables : ICloneable
{
void Draw(SpriteBatch spriteBatch, int size, int width);
}
}