Engine²
Open-source game engine written in C++.
Loading...
Searching...
No Matches
CubeGenerator.hpp
Go to the documentation of this file.
1#pragma once
2
3#include "component/Mesh.hpp"
4#include <cstdint>
5#include <glm/glm.hpp>
6
7namespace Object::Utils {
8
15Component::Mesh GenerateCubeMesh(float size = 1.0f);
16
17} // namespace Object::Utils
Definition BoxGenerator.cpp:4
Component::Mesh GenerateCubeMesh(float size)
Generate a cube mesh with specified size.
Definition CubeGenerator.cpp:7