This repository has been archived on 2020-04-21. You can view files and clone it, but cannot push or open issues or pull requests.

39 lines
411 B
JavaScript

// Handle starting the pre-load animation
var page_preloader = new Preloader();
page_preloader.show(true);
images = [
""
];
audio = [
""
];
function update() {
}
function input() {
}
function draw() {
}
function absoluteDraw() {
}
function onAssetsLoaded() {
}
setup(60);
// Hide the preloader
// This should actually run after all assets have been downloaded
page_preloader.hide(false);