cb348fe1b8
Created object and math files for operations specific to objects and math.
11 lines
184 B
C
11 lines
184 B
C
#ifndef MATH_H
|
|
#define MATH_H
|
|
|
|
#include "object.h"
|
|
#include <cglm/cglm.h>
|
|
|
|
float frand48(void);
|
|
void calculate_gravity(struct object *src, struct object *target, vec3 force);
|
|
|
|
#endif
|