#ifndef __TEMPLE_H
#define __TEMPLE_H

#include "model.h"

enum t_models { 
	templepillar1, 
	templepillar2, 
	templepillar3, 
	templepillar4, 
	templebottom, 
	templecube1b, 
	templecube2b, 
	templecube3b, 
	templecube4b,
	templecube1t, 
	templecube2t, 
	templecube3t, 
	templecube4t,  
	templeroof, 
	templedome,
	templefloor,
/*	templehpillar1, 
	templehpillar2, 
	templehpillar3, 
	templehpillar4,
	templelfloor,
	templeskysphere, */
	ntemplemodels };

enum b_models {
	//box1,
	bpillar1,
	bpillar2,
	bpillar3,
	btop,
	nbuildingmodels
};


void generate_Temple();
void part_Templepart ();
void init_Temple ();

extern Model *templesubmodel[ntemplemodels];

#endif