mirror of
https://github.com/farisawan-2000/kirby64.git
synced 2025-02-09 22:42:19 +00:00
19 lines
226 B
C
19 lines
226 B
C
#ifndef NORMAL_H
|
|
#define NORMAL_H
|
|
|
|
struct normal {
|
|
float x;
|
|
float y;
|
|
float z;
|
|
float originOffset;
|
|
};
|
|
typedef struct normal Normal;
|
|
|
|
struct nmlList{
|
|
Normal *normals;
|
|
int len;
|
|
};
|
|
typedef struct nmlList NormalList;
|
|
|
|
#endif
|