]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/menu/xonotic/nexposee.qc
Header police
[xonotic/xonotic-data.pk3dir.git] / qcsrc / menu / xonotic / nexposee.qc
1 #include "nexposee.qh"
2 #ifndef NEXPOSEE_H
3 #define NEXPOSEE_H
4 #include "../item/nexposee.qc"
5 CLASS(XonoticNexposee, Nexposee)
6         METHOD(XonoticNexposee, configureXonoticNexposee, void(entity));
7         METHOD(XonoticNexposee, close, void(entity));
8 ENDCLASS(XonoticNexposee)
9 entity makeXonoticNexposee();
10 #endif
11
12 #ifdef IMPLEMENTATION
13 entity makeXonoticNexposee()
14 {
15         entity me;
16         me = NEW(XonoticNexposee);
17         me.configureXonoticNexposee(me);
18         return me;
19 }
20
21 void XonoticNexposee_configureXonoticNexposee(entity me)
22 {
23 }
24
25 void XonoticNexposee_close(entity me)
26 {
27         m_goto(string_null); // hide
28 }
29 #endif