Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Sep 14, 2006, 5:24:31 PM (18 years ago)
Author:
bensch
Message:

orxonox/new_class_id: new Executor construct, that is much more typesafe, faster, and easier to extend…

Also changed the LoadParam process, and adapted ScriptEngine calls

Then at the end, some missing headers appeared, and appended them to all the cc-files again.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/new_class_id/src/lib/graphics/light.cc

    r9716 r9727  
    2222#include "glincl.h"
    2323#include "vector.h"
    24 #include "parser/tinyxml/tinyxml.h"
    25 #include "util/loading/load_param.h"
     24#include "util/loading/load_param_xml.h"
    2625#include "util/loading/factory.h"
    2726#include "debug.h"
     
    265264void LightManager::loadParams(const TiXmlElement* root)
    266265{
     266  printf("Loading Lights\n");
    267267  LoadParamXML(root, "Lights", this, LightManager, loadLights)
    268268  .describe("an XML-Element to load lights from.");
     
    277277void LightManager::loadLights(const TiXmlElement* root)
    278278{
     279  printf("Loading single Lights\n");
     280
    279281  const TiXmlElement* element = root->FirstChildElement();
    280282
Note: See TracChangeset for help on using the changeset viewer.