mirror of
https://git.code.sf.net/p/quake/game-source
synced 2024-11-12 23:44:27 +00:00
88c055ea3c
<taniwha> zinx: thanks :) zinx' klik mod :)
14 lines
199 B
C++
14 lines
199 B
C++
#ifndef MATH_qh
|
|
#define MATH_qh 1
|
|
|
|
@extern {
|
|
|
|
float(float num, float bits) shl;
|
|
float(float num, float bits) shr;
|
|
|
|
#define min(a, b) ((a)>(b)?(b):(a))
|
|
#define max(a, b) ((a)>(b)?(a):(b))
|
|
|
|
};
|
|
|
|
#endif
|