Architecture Arcade
Architecture Commune Arcade
ICore.hpp
Go to the documentation of this file.
1 /*
2 ** EPITECH PROJECT, 2023
3 ** Archi Arcade Promo 2026 Toulouse
4 ** File description:
5 ** Core interface (in the arcade binary)
6 */
7 
8 #pragma once
9 
10 namespace Arcade {
11  namespace Core {
24  class ICore {
25  public:
26  virtual ~ICore() = default;
27 
32  virtual void update() = 0;
33  };
34  } // namespace Core
35 } // namespace Arcade
Definition: ArcadeStruct.hpp:10
The ICore class.
Definition: ICore.hpp:24
virtual void update()=0
function that will call update of IGameModule and IDisplayModule
virtual ~ICore()=default