FrameworkZ 10.8.3
Provides a framework for Project Zomboid with various systems.
Loading...
Searching...
No Matches
Interfaces.lua
Go to the documentation of this file.
7
9 if not uniqueID or uniqueID == "" then return false end
11 local object = {
13 }
14
15 setmetatable(object, {})
16
17 return object
18end
20function FrameworkZ.Interfaces:Register(tbl, index)
21 self.List[index] = tbl
22end
23
24function FrameworkZ.Interfaces:GetUI(index)
25 return self.List[index]
26end
27
28function FrameworkZ.Interfaces:Initialize()
29 for k, v in pairs(self.List) do
30 FrameworkZ.UI[k] = FrameworkZ.Utilities:MergeTables(FrameworkZ.UI[k], ISPanel:derive(k))
31 end
32end
void FrameworkZ Interfaces()
void FrameworkZ Interfaces List()
void FrameworkZ()
void uniqueID()
void self self
Definition MainMenu.lua:89
void tbl()
void if type v()
Foundation for FrameworkZ.
void Register(tbl, index)
void New(uniqueID)