7 lines
195 B
C#
7 lines
195 B
C#
namespace DanieleMarotta.RiversongCodeShowcase
|
|
{
|
|
public interface IBuildingFactory
|
|
{
|
|
Building Create(BuildingDefinition definition, TileRect rect, Directions orientation);
|
|
}
|
|
} |