]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/menu/xonotic/bigbutton.qc
Merge branch 'master' into terencehill/hud_fixes
[xonotic/xonotic-data.pk3dir.git] / qcsrc / menu / xonotic / bigbutton.qc
1 #include "bigbutton.qh"
2
3 entity makeXonoticBigButton(string theText, vector theColor)
4 {
5         entity me;
6         me = NEW(XonoticBigButton);
7         me.configureXonoticBigButton(me, theText, theColor);
8         return me;
9 }
10
11 void XonoticBigButton_configureXonoticBigButton(entity me, string theText, vector theColor)
12 {
13         me.configureXonoticButton(me, theText, theColor, string_null);
14 }