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. }