1 #include "archbodypart.h"
2 
archBodypart()3 archBodypart::archBodypart()
4 {
5 	type = 0;
6 	id = 0;
7 	x = 0;
8 	y = 0;
9 	z = 0;
10 	materialID = 0;
11 }
12 
~archBodypart()13 archBodypart::~archBodypart()
14 {
15 }
16 
17 
18