Changeset 6662 for code/branches/gamestates2/data/gui/scripts/QuestGUI.lua
- Timestamp:
- Mar 31, 2010, 1:05:28 AM (15 years ago)
- Location:
- code/branches/gamestates2
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/gamestates2
- Property svn:mergeinfo changed
/code/branches/gamestate merged: 6621-6630,6655-6661
- Property svn:mergeinfo changed
-
code/branches/gamestates2/data/gui/scripts/QuestGUI.lua
r6595 r6662 1 gui = require("BasicGUI") 2 local P = BasicGUI:new("QuestGUI") 3 if _REQUIREDNAME == nil then 4 QuestGUI = P 5 else 6 _G[_REQUIREDNAME] = P 7 end 1 -- QuestGUI.lua 8 2 9 function P:show() 10 self.window:show() -- TDO: Do this through parent... 11 self.visible = true 3 local P = createSheet("QuestGUI") 4 5 function P.show() 6 P.window:show() -- TDO: Do this through parent... 7 P.visible = true 12 8 13 9 local questManager = orxonox.QuestManager:getInstance()
Note: See TracChangeset
for help on using the changeset viewer.