ref: 6c7edf0bdcdeed52069f87451c4c581dc1bdcc7d
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