10 lines
252 B
C#
10 lines
252 B
C#
using CzokoŚmieciarka.MonoGameView.DataModels.Interfaces.GarbageCollector;
|
|
|
|
namespace CzokoŚmieciarka.MonoGameView.DataModels.Interfaces
|
|
{
|
|
public interface IStep
|
|
{
|
|
void Invoke(IGarbageCollector collector, object [,] grid);
|
|
}
|
|
}
|