11 lines
317 B
C#
11 lines
317 B
C#
namespace DanieleMarotta.RiversongCodeShowcase
|
|
{
|
|
public interface IBuildingPanelSectionPresenter
|
|
{
|
|
bool IsSectionRelevant(Building building);
|
|
|
|
void InitializeSection(BuildingPanelModel model, Building building);
|
|
|
|
void UpdateSection(BuildingPanelModel model, Building building);
|
|
}
|
|
} |