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