Xonotic QuakeC
The free, fast arena FPS with crisp movement and a wide array of weapons
progname.qh
Go to the documentation of this file.
1#pragma once
2
3#if defined(MENUQC)
4 #define PROGNAME "MENUQC"
5#elif defined(SVQC)
6 #define PROGNAME "SVQC"
7#elif defined(CSQC)
8 #define PROGNAME "CSQC"
9#else
10 #error "Unable to detect PROGNAME"
11#endif