using Assets.Common; namespace Assets.GridGenerator { public interface IGridGenerator { Map CreateGrid(double width, double height); } }