mirror of
https://github.com/guezoloic/t3dsr.git
synced 2026-01-25 16:34:24 +00:00
10 lines
161 B
C
10 lines
161 B
C
#ifndef VECTOR_H
|
|
#define VECTOR_H
|
|
|
|
#include "math/vector3.h"
|
|
#include "math/vector4.h"
|
|
|
|
Vec3* Vec4ToVec3(Vec4* v);
|
|
Vec4* Vec3ToVec4(Vec3* v);
|
|
|
|
#endif // VECTOR_H
|