blob: 2db4075a08efbc10b1292510ed26fba60c6f134f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
/*
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__
|