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