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