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

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

public:
	virtual void Print();
};