sandbox
Loading...
Searching...
No Matches
application.hpp
1#ifndef LIBSBX_CORE_APPLICATION_HPP_
2#define LIBSBX_CORE_APPLICATION_HPP_
3
4namespace sbx::core {
5
7
8 friend class engine;
9
10public:
11
12 virtual ~application() = default;
13
14 virtual auto update() -> void = 0;
15
16 virtual auto fixed_update() -> void = 0;
17
18}; // class application
19
20} // namespace sbx::core
21
22#endif // LIBSBX_CORE_APPLICATION_HPP_
Definition: application.hpp:6
Definition: engine.hpp:27