9 lines
120 B
C++
Raw Normal View History

2025-01-22 16:18:30 +01:00
#include "RectangleDef.h"
int Rectangle::instanceCount = 0;
int Rectangle::area()
{
return width*height;
}