ref: a398442d41ed928c12632909a02fd5f3052b7d27
dir: /Game/src/audiolib/util.h/
#ifndef AUDIOLIB__UTIL_H #define AUDIOLIB__UTIL_H #ifndef min #define min(a, b) ((a) < (b) ? (a) : (b)) #endif #ifndef max #define max(a, b) ((a) > (b) ? (a) : (b)) #endif #endif