diff options
author | Clyne Sullivan <tullivan99@gmail.com> | 2015-09-11 22:58:02 -0400 |
---|---|---|
committer | Clyne Sullivan <tullivan99@gmail.com> | 2015-09-11 22:58:02 -0400 |
commit | 3782c6ae9581063b3ed9e45467ce43f0b320bb19 (patch) | |
tree | 77dd569b249ec0a2f120251d6d77e6c69cea6933 /src/main.cpp | |
parent | a55903b8784df7c7033983212ca974e472c51dbf (diff) |
improved layers
Diffstat (limited to 'src/main.cpp')
-rw-r--r-- | src/main.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/main.cpp b/src/main.cpp index 8768edd..51b5c07 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -93,8 +93,10 @@ int main(int argc,char **argv){ w=new World(2,NULL,w2); currentWorld=w; - currentWorld->addLayer(); currentWorld->setRoot(); + currentWorld->addLayer(); + //currentWorld->addLayer(); + //currentWorld->addLayer(); // Save the world if necessary /*FILE *f=fopen("world.dat","r"); @@ -172,7 +174,7 @@ void render(){ **** RENDER STUFF HERE **** **************************/ - currentWorld->draw(); + currentWorld->draw(); // layers dont scale x correctly... glColor3ub(120,30,30); glRectf(player.loci.x, player.loci.y, player.loci.x + player.width, player.loci.y + player.height); |