Add missing include directive

This commit is contained in:
LJ Sonic 2025-07-29 23:30:18 +02:00 committed by Anonimus
parent 18d54fc07b
commit e180d7720e
3 changed files with 6 additions and 0 deletions

View file

@ -9,6 +9,8 @@
/// \file matrix.c
/// \brief Fixed-point 3D vector
#include <string.h>
#include "matrix.h"
static matrix_t identitymatrix = {{

View file

@ -9,6 +9,8 @@
/// \file quaternion.c
/// \brief Fixed-point 3D vector
#include <string.h>
#include "quaternion.h"
#include "vector3d.h"
#include "matrix.h"

View file

@ -9,6 +9,8 @@
/// \file vector3d.c
/// \brief Fixed-point 3D vector
#include <string.h>
#include "vector3d.h"
#include "r_main.h" // R_PointToDist2