switch-examples/graphics/opengl/lenny/source/lenny.h
2018-09-08 20:41:17 +02:00

20 lines
274 B
C

#pragma once
typedef struct
{
float x, y, z;
float nx, ny, nz;
} lennyVertex;
#ifdef __cplusplus
extern "C" {
#endif
extern const lennyVertex lennyVertices[3345];
#ifdef __cplusplus
}
#endif
#define lennyVerticesCount (sizeof(lennyVertices)/sizeof(lennyVertices[0]))