b0602639f2ceecf04fff6dbc30e307d25189321f
[supertux.git] / src / spawn_point.h
1 #ifndef __SPAWN_POINT_H__
2 #define __SPAWN_POINT_H__
3
4 #include <string>
5 #include "math/vector.h"
6 #include "lisp/lisp.h"
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