summaryrefslogtreecommitdiff
path: root/gamemode/cl_hud/draw.lua
diff options
context:
space:
mode:
Diffstat (limited to 'gamemode/cl_hud/draw.lua')
-rw-r--r--gamemode/cl_hud/draw.lua9
1 files changed, 9 insertions, 0 deletions
diff --git a/gamemode/cl_hud/draw.lua b/gamemode/cl_hud/draw.lua
new file mode 100644
index 0000000..86faaf6
--- /dev/null
+++ b/gamemode/cl_hud/draw.lua
@@ -0,0 +1,9 @@
+
+function GM:HUDPaint()
+ DrawRect( 0, 0, ScrW(), 20, MAIN_COLOR )
+ DrawText( GM.Name, "Trebuchet18", 5, 0, MAIN_TEXTCOLOR )
+
+ DrawHealthbar()
+ DrawBatteryLife()
+end
+