Czoko_Smieciarka/Trunk/MonoGameView/DataModels/Interfaces/IDrawables.cs

12 lines
274 B
C#
Raw Normal View History

2019-04-22 14:17:44 +02:00
using Microsoft.Xna.Framework.Content;
using Microsoft.Xna.Framework.Graphics;
2019-04-23 06:32:35 +02:00
using System;
2019-04-22 10:39:00 +02:00
namespace CzokoŚmieciarka.MonoGameView.DataModels.Interfaces
{
2019-04-23 06:32:35 +02:00
public interface IDrawables : ICloneable
2019-04-22 10:39:00 +02:00
{
2019-04-22 14:55:47 +02:00
void Draw(SpriteBatch spriteBatch, int size);
2019-04-22 10:39:00 +02:00
}
}