9 lines
143 B
C#
9 lines
143 B
C#
using Assets.Common;
|
|
|
|
namespace Assets
|
|
{
|
|
public interface IGridGenerator
|
|
{
|
|
Map CreateGrid(double width, double height);
|
|
}
|
|
} |