11 lines
270 B
C#
11 lines
270 B
C#
using CzokoŚmieciarka.MonoGameView.DataModels.Interfaces.GarbageCollector;
|
|
using System;
|
|
|
|
namespace CzokoŚmieciarka.MonoGameView.DataModels.Interfaces
|
|
{
|
|
public interface IStep
|
|
{
|
|
bool Invoke(IGarbageCollector collector, ICloneable [,] grid);
|
|
}
|
|
}
|