summaryrefslogtreecommitdiffstats
path: root/Level.h
diff options
context:
space:
mode:
authorneoraider <devnull@localhost>2008-02-08 22:21:01 +0100
committerneoraider <devnull@localhost>2008-02-08 22:21:01 +0100
commitacb1721e94a49a4941bb11dfc2f832c3848aa204 (patch)
tree6398053a11b46242974ae171d700418bd42c92b8 /Level.h
parenta39525ca36e2c002332f914907f74061533c2b04 (diff)
downloadzoomedit-acb1721e94a49a4941bb11dfc2f832c3848aa204.tar
zoomedit-acb1721e94a49a4941bb11dfc2f832c3848aa204.zip
zoomedit: Implemented Rotate tool; added simple gates.
Diffstat (limited to 'Level.h')
-rw-r--r--Level.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/Level.h b/Level.h
index 74e835d..ede34db 100644
--- a/Level.h
+++ b/Level.h
@@ -5,12 +5,14 @@
#include "LevelObject.h"
#include "SharedPtr.h"
#include "PlayerStart.h"
+#include "Portal.h"
#include <vector>
class Level : public std::vector<SharedPtr<LevelObject> > {
public:
Level() {
push_back(SharedPtr<LevelObject>(new PlayerStart()));
+ push_back(SharedPtr<LevelObject>(new Portal(2, 2, 0.4f)));
}
};