2019-04-22 09:24:16 +02:00
|
|
|
|
using CzokoŚmieciarka.MonoGameView.DataModels.Interfaces.GarbageCollector;
|
2019-05-05 17:54:12 +02:00
|
|
|
|
using System;
|
2019-04-22 09:24:16 +02:00
|
|
|
|
|
|
|
|
|
namespace CzokoŚmieciarka.MonoGameView.DataModels.Interfaces
|
|
|
|
|
{
|
|
|
|
|
public interface IStep
|
|
|
|
|
{
|
2019-05-05 17:54:12 +02:00
|
|
|
|
bool Invoke(IGarbageCollector collector, ICloneable [,] grid);
|
2019-04-22 09:24:16 +02:00
|
|
|
|
}
|
|
|
|
|
}
|