aboutsummaryrefslogtreecommitdiff
path: root/gamemode/hud/games/base.lua
blob: 5bf455affc4f324110d776d1f87782040e3f0e8a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
--A file to show what functions are used for minigames
print("Base included!")

Game = Game or {}

--Required functions
--Called once when the plyer starts casting
Game.Cast = function(spelltab,difficulty)
end

--Called continuously while the player is casting
Game.Draw = function(self)
end