Curring magic
This commit is contained in:
16
src/services/Cost/TaxComponent.cpp
Normal file
16
src/services/Cost/TaxComponent.cpp
Normal file
@ -0,0 +1,16 @@
|
||||
//
|
||||
// Created by stani on 3/10/2025.
|
||||
//
|
||||
|
||||
#include "TaxComponent.h"
|
||||
|
||||
void TaxComponent::applyCost(std::vector<std::unique_ptr<Community>>& communities)
|
||||
{
|
||||
Community::iterateVector(communities, [&](Community& community)
|
||||
{
|
||||
Building::Base::iterateVector(community.buildings(), [&](Building::Base& building)
|
||||
{
|
||||
|
||||
});
|
||||
});
|
||||
}
|
||||
Reference in New Issue
Block a user