aboutsummaryrefslogtreecommitdiffstats
path: root/src/main.cpp
diff options
context:
space:
mode:
authorClyne Sullivan <tullivan99@gmail.com>2015-09-10 15:19:18 -0400
committerClyne Sullivan <tullivan99@gmail.com>2015-09-10 15:19:18 -0400
commit1a3f4ac5ac12700757d2558ee06f202ad43aa841 (patch)
treec4df6844f422b7506b611311933d6568f4fd538b /src/main.cpp
parenta3db993224c994fdff6f50fedcc266c5e0b94aa8 (diff)
added linked worlds
Diffstat (limited to 'src/main.cpp')
-rw-r--r--src/main.cpp8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/main.cpp b/src/main.cpp
index b04cb59..fa3a9c4 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -10,6 +10,7 @@ bool gameRunning = true;
UIClass ui;
Entities *entit1;
Player player;
+World *currentWorld;
int main(int argc,char **argv){
// Initialize SDL
@@ -54,7 +55,10 @@ int main(int argc,char **argv){
entit1 = &player;
entit1->spawn(0,0);
- World *w=new World(2);
+ World *w=NULL;
+ World *w2=new World(4,w,NULL);
+ w=new World(2,NULL,w2);
+ currentWorld=w;
while(gameRunning){
ui.handleEvents(); // Handle events
@@ -75,7 +79,7 @@ int main(int argc,char **argv){
**** RENDER STUFF HERE ****
**************************/
- w->draw();
+ currentWorld->draw();
glColor3ub(0,0,0);
glRectf(player.loc.x, player.loc.y, player.loc.x + player.width, player.loc.y + player.height);