mirror of
				https://github.com/switchbrew/switch-examples.git
				synced 2025-10-31 04:55:47 +01: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]))
 |