A small game engine for 2D games based of Raylib
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

13 行
245 B

  1. #pragma once
  2. #include "entity.h"
  3. namespace ant::entities::utilities {
  4. struct ui_fps_entity : public ant::core::entity {
  5. ui_fps_entity(const std::shared_ptr<entity>& parent)
  6. : ant::core::entity(parent)
  7. {}
  8. void render() final;
  9. };
  10. }