func open_browser(url):
if cef_browser == null:
cef_browser = GDCEF.new()
cef_browser.create_browser(url, 1024, 768)
add_child(cef_browser)
else:
cef_browser.load_url(url)
Iusse code: cef_browser = GDCEF.new()
Identifier “GDCEF” not declared in the current scope.