1234567891011121314151617 |
- #pragma once
- #include "Effect.h"
- class RolleEffect : public Effect
- {
- private:
- Richtung r;
- public:
- RolleEffect( Spieler *zSpieler, Richtung r );
- ~RolleEffect();
- bool istSpielerBeweglich( Richtung r ) const override;
- bool istSpielerVerwundbar( Richtung r ) const override;
- void move( Richtung r, double time ) override;
- bool istGegenstandErlaubt( GegenstandTyp typ ) const override;
- };
|