]> icculus.org git repositories - divverent/nexuiz.git/blob - data/qcsrc/menu/nexuiz/nexposee.c
menu rearrangements by Samual
[divverent/nexuiz.git] / data / qcsrc / menu / nexuiz / nexposee.c
1 #ifdef INTERFACE
2 CLASS(NexuizNexposee) EXTENDS(Nexposee)
3         METHOD(NexuizNexposee, configureNexuizNexposee, void(entity))
4         METHOD(NexuizNexposee, close, void(entity))
5 ENDCLASS(NexuizNexposee)
6 entity makeNexuizNexposee();
7 #endif
8
9 #ifdef IMPLEMENTATION
10 entity makeNexuizNexposee()
11 {
12         entity me;
13         me = spawnNexuizNexposee();
14         me.configureNexuizNexposee(me);
15         return me;
16 }
17
18 void configureNexuizNexposeeNexuizNexposee(entity me)
19 {
20 }
21
22 void closeNexuizNexposee(entity me)
23 {
24         m_goto(string_null); // hide
25 }
26 #endif