]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/menu/xonotic/nexposee.qc
Fix FL_WEAPON flag overlapping FL_JUMPRELEASED. This unintentional change was introdu...
[xonotic/xonotic-data.pk3dir.git] / qcsrc / menu / xonotic / nexposee.qc
1 #include "nexposee.qh"
2
3 entity makeXonoticNexposee()
4 {
5         entity me;
6         me = NEW(XonoticNexposee);
7         me.configureXonoticNexposee(me);
8         return me;
9 }
10
11 void XonoticNexposee_configureXonoticNexposee(entity me)
12 {
13 }
14
15 void XonoticNexposee_close(entity me)
16 {
17         m_goto(string_null); // hide
18 }