projects
/
supertux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
acd1950
)
made typedefs public
author
Christoph Sommer
<mail@christoph-sommer.de>
Tue, 11 Apr 2006 18:39:58 +0000
(18:39 +0000)
committer
Christoph Sommer
<mail@christoph-sommer.de>
Tue, 11 Apr 2006 18:39:58 +0000
(18:39 +0000)
SVN-Revision: 3301
src/sector.hpp
patch
|
blob
|
history
diff --git
a/src/sector.hpp
b/src/sector.hpp
index
67efe38
..
7fff0f3
100644
(file)
--- a/
src/sector.hpp
+++ b/
src/sector.hpp
@@
-125,6
+125,10
@@
public:
Rect get_active_region();
+ typedef std::vector<GameObject*> GameObjects;
+ typedef std::vector<MovingObject*> MovingObjects;
+ typedef std::vector<SpawnPoint*> SpawnPoints;
+
private:
uint32_t collision_tile_attributes(const Rect& dest) const;
@@
-146,10
+150,6
@@
private:
void fix_old_tiles();
- typedef std::vector<GameObject*> GameObjects;
- typedef std::vector<MovingObject*> MovingObjects;
- typedef std::vector<SpawnPoint*> SpawnPoints;
-
static Sector* _current;
std::string name;