summaryrefslogtreecommitdiffstats
path: root/House.cpp
blob: 4b2d83c97104a81fa2a48f18ee6c7dd248c27950 (plain)
1
2
3
4
5
6
7
8
#include "House.h"

House::House (float inittemp0, int earthx0, int earthy0, int earthz0, float collectortemp0,
              float latitude0):
              collectortemp(collectortemp0), latitude(latitude0) {
  Temparray temp0(inittemp0, earthx0, earthy0, earthz0);
  temp = temp0;
}