RType
Move.hpp
Go to the documentation of this file.
1 /*
2 ** EPITECH PROJECT, 2023
3 ** R-type
4 ** File description:
5 ** R-type
6 */
7 
8 #pragma once
9 
10 #include "AService.hpp"
11 #include "Drawable.hpp"
12 
13 class Move : public AService
14 {
15  public:
16 
17  /**
18  * @brief Construct a new Move:: Move object
19  * @param serverSocket
20  */
21  explicit Move(std::shared_ptr<ServerSocket> serverSocket) :
23 
24  /**
25  * @brief update, update the move
26  *
27  * @param event
28  * @param component
29  */
30  void update(std::shared_ptr<Event> event, std::shared_ptr<IComponentRType> component) override;
31 };