Files
riversong-code-showcase/Source/Riversong/Game/UI/Panels/BuildingPanel/IBuildingPanelSectionPresenter.cs
2026-05-21 16:04:49 +02:00

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);
}
}