Files
sim/src/services/Cost/BillCharge.h
2025-03-16 16:32:22 +01:00

18 lines
315 B
C++

//
// 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