Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 5682 in orxonox.OLD for branches/world_entities/src/util


Ignore:
Timestamp:
Nov 21, 2005, 10:27:33 PM (19 years ago)
Author:
bensch
Message:

we: Base for NPC

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/world_entities/src/util/object_manager.h

    r5629 r5682  
    88
    99#include "base_object.h"
     10#include <list>
    1011
    1112// FORWARD DECLARATION
     13
     14
     15class ObjectGroupList
     16{
     17
     18
     19
     20};
     21
    1222
    1323//! A default singleton class.
     
    1929  inline static ObjectManager* getInstance(void) { if (!ObjectManager::singletonRef) ObjectManager::singletonRef = new ObjectManager();  return ObjectManager::singletonRef; };
    2030
     31
     32  ObjectGroupList* getGroupList( );
     33
    2134 private:
    2235  ObjectManager(void);
    2336  static ObjectManager* singletonRef;
     37
     38  std::list<ObjectGroupList>           groupList;
     39
     40
    2441};
    2542
Note: See TracChangeset for help on using the changeset viewer.