12 lines
107 B
C#
12 lines
107 B
C#
|
|
|
|
namespace Cell
|
|
{
|
|
public interface ITick
|
|
{
|
|
public void Tick()
|
|
{
|
|
}
|
|
}
|
|
}
|