diff options
Diffstat (limited to 'gamemode/shared/questsystem/examplequest.lua')
| -rw-r--r-- | gamemode/shared/questsystem/examplequest.lua | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/gamemode/shared/questsystem/examplequest.lua b/gamemode/shared/questsystem/examplequest.lua new file mode 100644 index 0000000..8605ab8 --- /dev/null +++ b/gamemode/shared/questsystem/examplequest.lua @@ -0,0 +1,13 @@ +if SERVER then return end +local quest = {} + +quest.Name = "Example Quest" + +--[[ + Given a DPanel, draw some text that the player can use when going through quests. +]] +function quest.DrawQuestInfo(panel, status) + +end + +ART.RegisterQuest(quest) |
