]> git.rm.cloudns.org Git - xonotic/xonotic-data.pk3dir.git/commitdiff
Include the new headers in mod files
authorMario <mario.mario@y7mail.com>
Sun, 18 Oct 2020 21:56:17 +0000 (07:56 +1000)
committerMario <mario.mario@y7mail.com>
Sun, 18 Oct 2020 21:56:17 +0000 (07:56 +1000)
qcsrc/menu/xonotic/_mod.inc
qcsrc/menu/xonotic/_mod.qh
qcsrc/menu/xonotic/dialog_multiplayer_media.qc

index 0f9a960c92f657e0dc00ba00ff1ea3a26bdb10bd..9b895e4f834dbc38f6b2e057fb9d99413b24bf7f 100644 (file)
 #include <menu/xonotic/util.qc>
 #include <menu/xonotic/weaponarenacheckbox.qc>
 #include <menu/xonotic/weaponslist.qc>
+
+#include <menu/xonotic/guide/_mod.inc>
index 2bb4ccead24a71d6df581c6db654e49acd47cb7e..412dd7e7603d0a6841a66d70565a11beabad00b9 100644 (file)
 #include <menu/xonotic/util.qh>
 #include <menu/xonotic/weaponarenacheckbox.qh>
 #include <menu/xonotic/weaponslist.qh>
+
+#include <menu/xonotic/guide/_mod.qh>
index bc379d3b93adbb0e43646d4a92c38c11b7ba3593..f337221fc586ea85ff391396d5a8cf708633fe5f 100644 (file)
@@ -7,6 +7,8 @@
 #include "dialog_multiplayer_media_demo_timeconfirm.qh"
 #include "dialog_multiplayer_media_demo_startconfirm.qh"
 
+#include <menu/xonotic/guide/tab.qh>
+
 #include "tabcontroller.qh"
 
 entity makeXonoticMediaTab()
@@ -22,6 +24,7 @@ void XonoticMediaTab_fill(entity me)
        mc = makeXonoticTabController(me.rows - 2);
 
        me.gotoRC(me, 0.5, 0);
+               me.TD(me, 1, 1, e = mc.makeTabButton(mc, _("Guide"), NEW(XonoticGuideTab)));
                me.TD(me, 1, 1, e = mc.makeTabButton(mc, _("Demos"), makeXonoticDemoBrowserTab()));
                me.TD(me, 1, 1, e = mc.makeTabButton(mc, _("Screenshots"), makeXonoticScreenshotBrowserTab()));
                me.TD(me, 1, 1, e = mc.makeTabButton(mc, _("Music Player"), makeXonoticMusicPlayerTab()));