11 lines
114 B
C
11 lines
114 B
C
|
#ifndef VERTEX_H
|
||
|
#define VERTEX_H
|
||
|
|
||
|
#include "types.h"
|
||
|
|
||
|
struct Vertex {
|
||
|
cfloat x, y, z;
|
||
|
}
|
||
|
|
||
|
#endif /* VERTEX_H */
|