ref: e11e7cb42d1762154194fc58eb200dd0fe1c47bd
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