Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/hudelements/data/gui/scripts/InGamePickupHUD.lua @ 6631

Last change on this file since 6631 was 6631, checked in by sfluecki, 14 years ago

damit semi alles hat

  • Property svn:eol-style set to native
File size: 557 bytes
Line 
1-- InGamePickupHUD.lua
2
3BasicGUI = require("BasicGUI")
4local P = BasicGUI:new() --inherit everything from the gui package
5if _REQUIREDNAME == nil then
6    InGamePickupHUD = P
7else
8    _G[_REQUIREDNAME] = P
9end
10
11P.filename = "InGamePickupHUD"
12P.layoutString = "InGamePickupHUD.layout"
13
14function P:init()
15  -- wie kann man hier dynamisch neue ListBoxItems erstellen?
16  -- wie können sich diese ListBoxItems selbst aktualisieren? <<Tickable?>>
17end
18
19
20-- events for ingamemenu
21
22
23
24function P.close_button_clicked()
25    hideGUI("InGamePickupHUD")
26end
27
28return P
29
Note: See TracBrowser for help on using the repository browser.