BMC Engine v1.0.0
An open-source game engine powered by C and C++
Loading...
Searching...
No Matches
Generators.h
1#ifndef GENERATOR_H
2#define GENERATOR_H
3
4#include <glad/glad.h>
5#include <iostream>
6
11public:
17 static void vertices(GLfloat verts[], float size);
18
23 static void indices(GLuint inds[]);
24};
25
26#endif // GENERATOR_H
Definition Generators.h:10
static void vertices(GLfloat verts[], float size)
Definition CubeGenerator.cpp:3
static void indices(GLuint inds[])
Definition CubeGenerator.cpp:23