Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Nov 5, 2007, 12:52:26 AM (16 years ago)
Author:
landauf
Message:

it starts to work, but there is still much to do.

@bensch: thanks for you mail, but i can't tell you much at the moment - i'm still changing lots of things and i have no idea if everything will work as intendet, so i'll write you as soon as i have reliable informations :)
</abuse log for pms>

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/objecthierarchie/src/orxonox.cc

    r116 r162  
    3131#include <OgreCEGUIRenderer.h>
    3232
     33#include "BaseObject.h"
     34#include "Test.h"
     35
    3336#if OGRE_PLATFORM == OGRE_PLATFORM_APPLE
    3437#include <CoreFoundation/CoreFoundation.h>
     
    8386    void go()
    8487    {
    85       createRoot();
     88/*      createRoot();
    8689      defineResources();
    8790      setupRenderSystem();
     
    9396      createFrameListener();
    9497      startRenderLoop();
     98*/
     99      std::cout << "Test 1\n";
     100      orxonox::BaseObject* test1;
     101      test1 = new orxonox::BaseObject();
     102      test1 = new orxonox::BaseObject();
     103      test1 = new orxonox::BaseObject();
     104
     105      std::cout << "Test 2\n";
     106      orxonox::A1* test2;
     107      test2 = new orxonox::A1();
     108      test2 = new orxonox::A1();
     109      test2 = new orxonox::A1();
     110
     111      std::cout << "Test 3\n";
     112      orxonox::BaseObject* test3;
     113      test3 = new orxonox::BaseObject();
     114      test3 = new orxonox::BaseObject();
     115      test3 = new orxonox::BaseObject();
     116
     117      std::cout << "Test 4\n";
     118      orxonox::A3* test4;
     119      test4 = new orxonox::A3();
     120      test4 = new orxonox::A3();
     121      test4 = new orxonox::A3();
     122
    95123    }
    96124
Note: See TracChangeset for help on using the changeset viewer.