blob: 65127e7241eec2e520dcad37a589db23ac8b2c3c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
--A file to show what functions are used for minigames
Game.Name="Base"
Game.Tip="Why did I even write this? No one will look at it anyway!"
--Set this to non-nil to end the game, and give the player a score.
Game.Score=nil
--[[
Game.OnStartCasting = function(ply,spell)
Game.Minigame = function()
end
Game.Interupt = function()
end
--]]
|