]> icculus.org git repositories - divverent/nexuiz.git/blob - data/menuqc/control/custom.qc
Revert first change in the trunk.
[divverent/nexuiz.git] / data / menuqc / control / 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