added BillingHistory

This commit is contained in:
2025-03-12 22:55:00 +01:00
parent 6917793786
commit 04c16b63ce
9 changed files with 205 additions and 78 deletions

View File

@ -0,0 +1,17 @@
//
// 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::Base>& building, std::unique_ptr<Community>& community) override;
};
#endif //BILLCHARGE_H