Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/SuperOrxoBros_HS18/data/gui/scripts/HUDSheet.lua @ 12177

Last change on this file since 12177 was 12177, checked in by siramesh, 5 years ago

Super Orxo Bros Final (Sidharth Ramesh, Nisa Balta, Jeff Ren)

File size: 379 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.