GUIEditor = {
tab = {},
tabpanel = {},
label = {},
button = {},
window = {},
combobox = {}
}
addEventHandler("onClientResourceStart", resourceRoot,
function()
GUIEditor.window[1] = guiCreateWindow(514, 252, 397, 401, "FRAKCJA", false)
guiWindowSetSizable(GUIEditor.window[1], false)
guiSetAlpha(GUIEditor.window[1], 0.86)
GUIEditor.button[1] = guiCreateButton(118, 290, 188, 101, "Rozpocznij s?u?b?.", false, GUIEditor.window[1])
GUIEditor.label[1] = guiCreateLabel(115, 120, 187, 61, "PSP - Pa?stwowa Stra? Po?arna", false, GUIEditor.window[1])
GUIEditor.combobox[1] = guiCreateComboBox(78, 136, 147, 15, "", false, GUIEditor.label[1])
GUIEditor.tabpanel[1] = guiCreateTabPanel(214, -7394, 141, 476, false, GUIEditor.window[1])
GUIEditor.tab[1] = guiCreateTab("Tab", GUIEditor.tabpanel[1])
end
)