Implement & link ac_quest_manager.c

This commit is contained in:
Cuyler36
2024-02-09 02:43:04 -05:00
parent 01d00d834c
commit 05aff02678
21 changed files with 2165 additions and 16 deletions
+1 -1
View File
@@ -23,7 +23,7 @@ extern "C" {
#define SQ(x) ((x)*(x))
#define CLAMP_MAX(x, min) ((min) < (x) ? (min) : (x))
/* Percent of 360 deg */
/* Float modulo operator */
#define MOD_F(a, m) (a - (int)((a) * (1.0f / (m))) * (m))
/* radians -> short angle */