Add ability to increase the amount of graph node flags

This commit is contained in:
Arceveti
2021-09-22 16:58:21 -07:00
parent 49571ff93b
commit e7fb56dc50
16 changed files with 71 additions and 75 deletions

View File

@@ -8,6 +8,9 @@
#include "macros.h"
#include "config.h"
#define BIT(i) (1 << (i))
#define BITMASK(size) ((BIT(size)) - 1)
struct Config
{
f32 audioFrequency;