]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/menu/xonotic/dialog_hudpanel_score.c
fix display of the welcome text
[xonotic/xonotic-data.pk3dir.git] / qcsrc / menu / xonotic / dialog_hudpanel_score.c
1 #ifdef INTERFACE
2 CLASS(XonoticHUDScoreDialog) EXTENDS(XonoticRootDialog)
3         METHOD(XonoticHUDScoreDialog, fill, void(entity))
4         ATTRIB(XonoticHUDScoreDialog, title, string, _("Score Panel"))
5         ATTRIB(XonoticHUDScoreDialog, color, vector, SKINCOLOR_DIALOG_TEAMSELECT)
6         ATTRIB(XonoticHUDScoreDialog, intendedWidth, float, 0.4)
7         ATTRIB(XonoticHUDScoreDialog, rows, float, 15)
8         ATTRIB(XonoticHUDScoreDialog, columns, float, 4)
9         ATTRIB(XonoticHUDScoreDialog, name, string, "HUDscore")
10 ENDCLASS(XonoticHUDScoreDialog)
11 #endif
12
13 #ifdef IMPLEMENTATION
14 void XonoticHUDScoreDialog_fill(entity me)
15 {
16         entity e;
17         string panelname = "score";
18
19         DIALOG_HUDPANEL_COMMON();
20 }
21 #endif