aboutsummaryrefslogtreecommitdiff
path: root/gamemode/hud/games/base.lua
blob: a3d09385905b72aee59e878e96f447b292e799a1 (plain)
1
2
3
4
5
6
7
8
9
10
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