aboutsummaryrefslogtreecommitdiff
path: root/week11/Exercise03/Electronics.h
blob: 7dc9b9a8485c0685c3df7a8a260eb7140de51117 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
#pragma once

class Electronics {
	char model[256];
	float needsVolts;
	float needsAmps;

public:
	virtual ~Electronics() = default;

	virtual void Print();
};