]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blobdiff - qcsrc/menu/xonotic/bigbutton.qc
Enable Apply button on player's name change
[xonotic/xonotic-data.pk3dir.git] / qcsrc / menu / xonotic / bigbutton.qc
index a63189b63a850dc326e46216e7429f5d80ba98cb..c0a5caa12177308e7a1f82d0cbcb4afbf2fc5234 100644 (file)
@@ -1,23 +1,25 @@
-#ifdef INTERFACE
-CLASS(XonoticBigButton) EXTENDS(XonoticButton)
-       METHOD(XonoticBigButton, configureXonoticBigButton, void(entity, string, vector))
+#ifndef BIGBUTTON_H
+#define BIGBUTTON_H
+#include "button.qc"
+CLASS(XonoticBigButton, XonoticButton)
+       METHOD(XonoticBigButton, configureXonoticBigButton, void(entity, string, vector));
        ATTRIB(XonoticBigButton, image, string, SKINGFX_BUTTON_BIG)
        ATTRIB(XonoticBigButton, grayImage, string, SKINGFX_BUTTON_BIG_GRAY)
 ENDCLASS(XonoticBigButton)
-entity makeXonoticButton(string theText, vector theColor);
+entity makeXonoticBigButton(string theText, vector theColor);
 #endif
 
 #ifdef IMPLEMENTATION
 entity makeXonoticBigButton(string theText, vector theColor)
 {
        entity me;
-       me = spawnXonoticBigButton();
+       me = NEW(XonoticBigButton);
        me.configureXonoticBigButton(me, theText, theColor);
        return me;
 }
 
 void XonoticBigButton_configureXonoticBigButton(entity me, string theText, vector theColor)
 {
-       me.configureXonoticButton(me, theText, theColor);
+       me.configureXonoticButton(me, theText, theColor, string_null);
 }
 #endif