Change Vector3D definition style

master
outfrost 2020-04-15 02:40:15 +02:00
parent 4ff3858fa3
commit 9040283b71
1 changed files with 4 additions and 2 deletions

View File

@ -1,10 +1,12 @@
#ifndef GEOMETRY_H_
#define GEOMETRY_H_
typedef struct {
typedef struct Vector3D Vector3D;
struct Vector3D {
float x;
float y;
float z;
} Vector3D;
};
#endif