Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 1856 in orxonox.OLD for orxonox/trunk/core/world.h


Ignore:
Timestamp:
May 5, 2004, 10:32:15 AM (21 years ago)
Author:
patrick
Message:

orxonox/trunk/core: test routines added, other minor changes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • orxonox/trunk/core/world.h

    r1855 r1856  
    2020  /* a list of all players */
    2121  struct playerList {
    22     playerList* nextPlayer;
     22    playerList* next;
    2323    Player* player;
    24     int playerNr;
     24    int number;
    2525  };
    2626  playerList* lastPlayer;
     
    2828  /* a list of all non-player-characters */
    2929  struct npcList {
    30     npcList* nextNPC;
     30    npcList* next;
    3131    NPC* npc;
    3232  };
     
    3939  bool removeNPC(NPC* npc);
    4040
    41 
     41  void testThaTest(void);
    4242
    4343
Note: See TracChangeset for help on using the changeset viewer.