mirror of
https://github.com/switchbrew/switch-examples.git
synced 2025-06-21 05:12:40 +02:00
20 lines
274 B
C
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]))
|