Pasaeta de include-what-you-use

This commit is contained in:
2024-10-13 21:58:36 +02:00
parent d0a6e4c572
commit 9825c7fb9b
28 changed files with 229 additions and 239 deletions

View File

@@ -1,11 +1,10 @@
#include "utils.h"
#include <stdlib.h> // for free, malloc
#include <algorithm> // for max, min
#include <cctype> // for isspace
#include <iterator> // for distance
#include <cmath>
struct JA_Music_t; // lines 3-3
struct JA_Sound_t; // lines 4-4
#include <algorithm> // for min, clamp, find_if_not, transform
#include <cctype> // for tolower, isspace
#include <cmath> // for cos, pow, M_PI
#include <compare> // for operator<
struct JA_Music_t; // lines 7-7
struct JA_Sound_t; // lines 8-8
// Colores
const Color bg_color = {0x27, 0x27, 0x36};