12 lines
285 B
C#
12 lines
285 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, int width);
|
|
}
|
|
}
|