]> icculus.org git repositories - divverent/nexuiz.git/blob - custom.qc
59ff1552f230e56e9c8c250b53d9067364e520f7
[divverent/nexuiz.git] / custom.qc
1 // DP/Nex Menu
2 // control/custom.qc
3
4 ////////////////
5 // Item_Custom
6 ///
7 // TODO: Remove Item_Custom - No, it should be the only customizable item
8
9 void() Item_Custom_Spawn =
10 {
11         self._reinit = CtCall_Reinit;
12         self._destroy = CtCall_Destroy;
13         self._key = CtCall_Key;
14         self._draw = CtCall_Draw;
15         self._mouseEnter = CtCall_MouseEnter;
16         self._mouseLeave = CtCall_MouseLeave;
17         self._select = CtCall_Select;
18         self._update = CtCall_Update;
19
20         CtCall_Init();
21 };
22