2019-04-22 14:17:44 +02:00
|
|
|
|
using Microsoft.Xna.Framework.Content;
|
|
|
|
|
using Microsoft.Xna.Framework.Graphics;
|
2019-04-22 10:39:00 +02:00
|
|
|
|
|
|
|
|
|
namespace CzokoŚmieciarka.MonoGameView.DataModels.Interfaces
|
|
|
|
|
{
|
|
|
|
|
public interface IDrawables
|
|
|
|
|
{
|
2019-04-22 14:17:44 +02:00
|
|
|
|
void Draw(ContentManager content, SpriteBatch spriteBatch, int size);
|
2019-04-22 10:39:00 +02:00
|
|
|
|
}
|
|
|
|
|
}
|