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