RType
IObject.hpp
Go to the documentation of this file.
1 /*
2 ** EPITECH PROJECT, 2023
3 ** RType
4 ** File description:
5 ** IObject.hpp
6 */
7 
8 #pragma once
9 
10 #include "../networking/server/ServerSocket.hpp"
11 #include <cstring>
12 #include <memory>
13 #include <string>
14 
15 class IObject
16 {
17  public:
18  virtual ~IObject() = default;
19  virtual Packet *getPacket() = 0;
20 };