Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Dec 1, 2005, 4:38:39 PM (20 years ago)
Author:
snellen
Message:

player.cc and player.h updated (both files in ../src/world_entities)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/spaceshipcontrol/src/world_entities/playable.h

    r5838 r5847  
    1010#include "event.h"
    1111
     12class Weapon;
    1213class WeaponManager;
    1314
     
    2829    void loadParams(const TiXmlElement* root);
    2930
    30     void addWeapon(Weapon* weapon);
    31     void removeWeapon(Weapon* weapon);
     31    virtual void addWeapon(Weapon* weapon )= 0;
     32    virtual void removeWeapon(Weapon* weapon) = 0;
    3233
    33     virtual void process(const Event &event);
     34    virtual void process(const Event &event) = 0;
    3435
    3536    WeaponManager* getWeaponManager();
Note: See TracChangeset for help on using the changeset viewer.