thunderbrew/src/gx/gll/GLVertexFormat.h
2023-01-02 13:17:18 -06:00

14 lines
226 B
C++

#ifndef GX_GLL_GL_VERTEX_FORMAT_H
#define GX_GLL_GL_VERTEX_FORMAT_H
#include "gx/gll/GLTypes.h"
#include <cstdint>
class GLVertexFormat {
public:
uint32_t m_Size;
GLVertexAttrib m_Attribs[16];
};
#endif