diff options
Diffstat (limited to 'gamemode/hud/spellminigames')
| -rw-r--r-- | gamemode/hud/spellminigames/base.lua | 18 | ||||
| -rw-r--r-- | gamemode/hud/spellminigames/connectthedots.lua | 7 |
2 files changed, 18 insertions, 7 deletions
diff --git a/gamemode/hud/spellminigames/base.lua b/gamemode/hud/spellminigames/base.lua new file mode 100644 index 0000000..65127e7 --- /dev/null +++ b/gamemode/hud/spellminigames/base.lua @@ -0,0 +1,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 + +--]] diff --git a/gamemode/hud/spellminigames/connectthedots.lua b/gamemode/hud/spellminigames/connectthedots.lua deleted file mode 100644 index c24ff14..0000000 --- a/gamemode/hud/spellminigames/connectthedots.lua +++ /dev/null @@ -1,7 +0,0 @@ ---The connet the dots spell game -print("Hi from connectthedots.lua") - -function connectthedots() - print("Blah!") - return 100 -end |
