Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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


Ignore:
Timestamp:
May 20, 2004, 1:01:57 AM (20 years ago)
Author:
patrick
Message:

orxonox/trunk: added ability to shoot. so check out the new release and shoot the fuck up

File:
1 edited

Legend:

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

    r1883 r1896  
    1010#include "player.h"
    1111#include "environment.h"
     12#include "shoot_laser.h"
    1213#include "stdincl.h"
    1314
     
    4748  envList* lastEnv;
    4849
     50  /* a list of all shoot-amental objects */
     51  struct shootList {
     52    shootList* next;
     53    ShootLaser* shoot;
     54    int number;
     55  };
     56  shootList* lastShoot;
     57
     58
    4959  bool addPlayer(Player* player);
    5060  bool removePlayer(Player* player);
    5161  Player* getLocalPlayer();
    52 
    5362  bool addNPC(NPC* npc);
    5463  bool removeNPC(NPC* npc);
    55 
    5664  bool addEnv(Environment* env);
     65  bool addShoot(ShootLaser* shoot);
    5766
    5867  void drawWorld(void);
Note: See TracChangeset for help on using the changeset viewer.