// // Created by stani on 3/12/2025. // #ifndef BILLCHARGE_H #define BILLCHARGE_H #include "../../interfaces/ICostComponent.h" class BillCharge : public ICostComponent { public: void apply(std::unique_ptr& building, std::unique_ptr& community) override; }; #endif //BILLCHARGE_H