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

14 行
245 B

#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;
};
}