Welcome to mirror list, hosted at ThFree Co, Russian Federation.

runtime.js « wasm « sdks - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b5cc6b85d2d26262a8da98089d9a239f19111199 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14

var Module = { 
	onRuntimeInitialized: function () {
		MONO.mono_load_runtime_and_bcl (
			config.vfs_prefix,
			config.deploy_prefix,
			config.enable_debugging,
			config.file_list,
			function () {
				App.init ();
			}
		)
	},
};