Changeset 1856 in orxonox.OLD for orxonox/trunk/core/world.h
- Timestamp:
- May 5, 2004, 10:32:15 AM (21 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/trunk/core/world.h
r1855 r1856 20 20 /* a list of all players */ 21 21 struct playerList { 22 playerList* next Player;22 playerList* next; 23 23 Player* player; 24 int playerNr;24 int number; 25 25 }; 26 26 playerList* lastPlayer; … … 28 28 /* a list of all non-player-characters */ 29 29 struct npcList { 30 npcList* next NPC;30 npcList* next; 31 31 NPC* npc; 32 32 }; … … 39 39 bool removeNPC(NPC* npc); 40 40 41 41 void testThaTest(void); 42 42 43 43
Note: See TracChangeset
for help on using the changeset viewer.