aboutsummaryrefslogtreecommitdiff
path: root/week11/Exercise03/WashingMachine.h
blob: 891539393a1d00adc19403d4743b644efaf69770 (plain) (blame)
1
2
3
4
5
6
7
8
9
#pragma once
#include "Electronics.h"

class WashingMachine : Electronics {
	unsigned maxLaundryWeight;

public:
	virtual void Print() override;
};