Czoko_Smieciarka/Trunk/MonoGameView/DataModels/Interfaces/IDrawables.cs
2019-04-23 06:32:35 +02:00

12 lines
274 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);
}
}