/*****************************************************************************//** 
*	@brief Deklarace tridy pro nacitani modelu typu ms3d (Milkshape 3D).
*
*	Loads and renders a Milkshape3D model. 
*
*	Email: brettporter@yahoo.com \n
*	Website: http://www.geocities.com/brettporter/ \n
*	Copyright (C)2000, Brett Porter. All Rights Reserved. \n
*
*	This file may be used only as long as this copyright notice remains intact.
*
*	@file MilkshapeModel.h
*	@author	Brett Porter.
*
*********************************************************************************/

#ifndef MILKSHAPEMODEL_H
#define MILKSHAPEMODEL_H

#include "Model.h"

/** @brief Trida pro operace s modelem ms3d, ktera ho umi nacist a vykreslit. */
class MilkshapeModel : public Model
{
	public:
		/**	@brief Constructor. */
		MilkshapeModel();

		/**	@brief Destructor. */
		virtual ~MilkshapeModel();

		/**	@brief Load the model data into the private variables. 
		*	@param filename Cesta k souboru modelu.
		*	@return True v pripade uspesneho nacteni a false v opacnem pripade.
		*/
		virtual bool loadModelData( const char *filename );
};

#endif // ndef MILKSHAPEMODEL_H

