sauvegarde 4
[PACMAN.git] / engines / heading_west.h
blob3c47a2b709361029e9447f8534f3c87115ded5c8
1 #ifndef HEADING_WEST_H
2 #define HEADING_WEST_H
4 /*!
5 * \file heading_west.h
6 * \brief Implementation of the movment to the left
7 * \author Alexandre Leonardi
8 */
10 #include "iheading.h"
12 /*!
13 * \namespace engine
15 * Namespace containing the "game engine" side of the project as a library
17 namespace engine
19 /*!
20 * \class Heading_west
21 * \brief Concrete implementation of IHeading interface for the movment to the left
23 class Heading_west : public IHeading
25 public:
26 /*!
27 * \brief Takes an origin position and moves it to the left
28 * \param from The origin position
29 * \return The modified position
31 QPointF do_deplacment(QPointF from);
35 #endif // HEADING_WEST_H