Czoko_Smieciarka/Trunk/MonoGameView/DataModels/Interfaces/IDrawables.cs
2019-04-22 14:55:47 +02:00

11 lines
247 B
C#

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