A small game engine for 2D games based of Raylib
Nie możesz wybrać więcej, niż 25 tematów
Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
|
|
- #pragma once
-
- #include "entity.h"
-
- namespace ant::entities::utilities {
-
- struct ui_fps_entity : public ant::core::entity {
- ui_fps_entity(const std::shared_ptr<entity>& parent)
- : ant::core::entity(parent)
- {}
- void render() final;
- };
-
- }
|