Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/gamestates2/data/gui/scripts/HUDSheet.lua @ 6718

Last change on this file since 6718 was 6718, checked in by rgrieder, 14 years ago

Moved BasicGUI.lua to GUISheet.lua and derived MenuSheet.lua as well as HUDSheet.lua from it.
Also, to make a new GUI sheet, use either createHUDSheet or createMenuSheet.
Also removed bShowCursor from the showGUI function. This is now always a value directed by the GUI sheet.

File size: 394 bytes
Line 
1-- HUDSheet.lua
2
3local P = {} -- Local alias, always use it in this file
4HUDSheet = P -- Global name
5setmetatable(P, require("GUISheet")) -- Inherit from GUISheet
6P.__index = P -- Provide class character
7
8-- Use this function to construct a new HUDSheet
9function P.new(name)
10    local newSheet = GUISheet.new(name)
11    setmetatable(newSheet, P)
12    return newSheet
13end
14
15return P
Note: See TracBrowser for help on using the repository browser.