aboutsummaryrefslogtreecommitdiff
path: root/gamemode/hud/games/base.lua
diff options
context:
space:
mode:
authorAlexander Pickering <Alexander.Pickering@anondomain.site90.net>2016-01-23 00:21:58 -0500
committerAlexander Pickering <Alexander.Pickering@anondomain.site90.net>2016-01-23 00:21:58 -0500
commit9b1057243fe1db65f351e213f00e41ceca67a8da (patch)
treed0d0982175639baaad0a28fee64c5dcbc41c11b9 /gamemode/hud/games/base.lua
parente8439ad503f530724f1eae2de1a8ac2c19df52c0 (diff)
downloadwintersurvival2-9b1057243fe1db65f351e213f00e41ceca67a8da.tar.gz
wintersurvival2-9b1057243fe1db65f351e213f00e41ceca67a8da.tar.bz2
wintersurvival2-9b1057243fe1db65f351e213f00e41ceca67a8da.zip
Completed basic framework for setting up spells, and minigames for casting
Diffstat (limited to 'gamemode/hud/games/base.lua')
-rw-r--r--gamemode/hud/games/base.lua9
1 files changed, 9 insertions, 0 deletions
diff --git a/gamemode/hud/games/base.lua b/gamemode/hud/games/base.lua
index a6c68c1..a3d0938 100644
--- a/gamemode/hud/games/base.lua
+++ b/gamemode/hud/games/base.lua
@@ -1,2 +1,11 @@
--A file to show what functions are used for minigames
print("Base included!")
+
+--Required functions
+--Called once when the plyer starts casting
+Game.Cast = function(difficulty)
+end
+
+--Called continuously while the player is casting
+Game.Draw = function()
+end