Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

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

damit semi alles hat

  • Property svn:eol-style set to native
File size: 557 bytes
RevLine 
[6600]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()
[6631]15  -- wie kann man hier dynamisch neue ListBoxItems erstellen?
16  -- wie können sich diese ListBoxItems selbst aktualisieren? <<Tickable?>>
[6600]17end
18
19
20-- events for ingamemenu
21
22
23
[6614]24function P.close_button_clicked()
25    hideGUI("InGamePickupHUD")
26end
27
[6600]28return P
29
Note: See TracBrowser for help on using the repository browser.