Skip to content

Instantly share code, notes, and snippets.

@RudolfVonKrugstein
Created July 16, 2012 12:41
Show Gist options
  • Save RudolfVonKrugstein/3122472 to your computer and use it in GitHub Desktop.
Save RudolfVonKrugstein/3122472 to your computer and use it in GitHub Desktop.
UHC JavaScript globalObjects
var allObjects = {}
function saveObject(name, obj) {
allObjects[name] = obj;
}
function loadObject(name) {
return allObjects[name];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment