/*
   model/map.h
   This file is part of the Osirion project and is distributed under
   the terms of the GNU General Public License version 2
*/

#ifndef __INCLUDED_MODEL_MAP_H__
#define __INCLUDED_MODEL_MAP_H__

#include "model/model.h"

namespace model {

/// class to load .map files into models
class Map {

public:
	/// load a MAP file from disk
	/** @param name	name of the model to be loaded
	 */
	static Model *load(std::string const &name);
	
};

}

#endif // __INCLUDED_MODEL_MAP_H__