sockscape/client/game.js

19 lines
436 B
JavaScript
Raw Normal View History

2017-04-17 21:02:12 +00:00
var FileCache = (function () {
function FileCache() {
}
FileCache.Initialize = function () {
2017-04-18 21:00:41 +00:00
var request = window.indexedDB.open("fileCache", 1);
2017-04-17 21:02:12 +00:00
};
return FileCache;
}());
FileCache.dbHandle = null;
2017-04-18 21:00:41 +00:00
/// <reference path="FileCache.ts" />
var Entrypoint = (function () {
function Entrypoint() {
}
Entrypoint.Main = function () {
FileCache.Initialize();
};
return Entrypoint;
}());