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