oops
[supertux.git] / src / spawn_point.hpp
1 #ifndef __SPAWN_POINT_H__
2 #define __SPAWN_POINT_H__
3
4 #include <string>
5 #include "math/vector.hpp"
6 #include "lisp/lisp.hpp"
7
8 class SpawnPoint
9 {
10 public:
11     SpawnPoint();
12     SpawnPoint(const SpawnPoint& other);
13     SpawnPoint(const lisp::Lisp* lisp);
14
15     std::string name;
16     Vector pos;
17 };
18
19 #endif
20