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#ifdef MENUQC
4 #define PROGNAME "MENUQC"
5#elifdef SVQC
6 #define PROGNAME "SVQC"
7#elifdef CSQC
8 #define PROGNAME "CSQC"
9#else
10 #error "Unable to detect PROGNAME"
11#endif