wow
nothing
This commit is contained in:
parent
7105166b5c
commit
8e80d5a8a4
5 changed files with 18 additions and 11 deletions
|
@ -1,15 +1,18 @@
|
||||||
var Entrypoint = (function () {
|
|
||||||
function Entrypoint() {
|
|
||||||
}
|
|
||||||
Entrypoint.Main = function () {
|
|
||||||
};
|
|
||||||
return Entrypoint;
|
|
||||||
}());
|
|
||||||
var FileCache = (function () {
|
var FileCache = (function () {
|
||||||
function FileCache() {
|
function FileCache() {
|
||||||
}
|
}
|
||||||
FileCache.Initialize = function () {
|
FileCache.Initialize = function () {
|
||||||
|
var request = window.indexedDB.open("fileCache", 1);
|
||||||
};
|
};
|
||||||
return FileCache;
|
return FileCache;
|
||||||
}());
|
}());
|
||||||
FileCache.dbHandle = null;
|
FileCache.dbHandle = null;
|
||||||
|
/// <reference path="FileCache.ts" />
|
||||||
|
var Entrypoint = (function () {
|
||||||
|
function Entrypoint() {
|
||||||
|
}
|
||||||
|
Entrypoint.Main = function () {
|
||||||
|
FileCache.Initialize();
|
||||||
|
};
|
||||||
|
return Entrypoint;
|
||||||
|
}());
|
||||||
|
|
|
@ -1,5 +1,7 @@
|
||||||
|
/// <reference path="FileCache.ts" />
|
||||||
|
|
||||||
class Entrypoint {
|
class Entrypoint {
|
||||||
static Main(): void {
|
static Main(): void {
|
||||||
|
FileCache.Initialize();
|
||||||
}
|
}
|
||||||
}
|
}
|
|
@ -2,6 +2,6 @@ class FileCache {
|
||||||
static dbHandle: IDBDatabase = null;
|
static dbHandle: IDBDatabase = null;
|
||||||
|
|
||||||
static Initialize(): void {
|
static Initialize(): void {
|
||||||
|
var request = window.indexedDB.open("fileCache", 1);
|
||||||
}
|
}
|
||||||
}
|
}
|
|
@ -1,5 +1,7 @@
|
||||||
body {
|
body {
|
||||||
background: #000;
|
background: #000;
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
#cs {
|
#cs {
|
||||||
|
|
|
@ -13,11 +13,11 @@ namespace CircleScape {
|
||||||
}
|
}
|
||||||
|
|
||||||
protected override void OnOpen() {
|
protected override void OnOpen() {
|
||||||
|
if()
|
||||||
}
|
}
|
||||||
|
|
||||||
protected override void OnMessage(MessageEventArgs e) {
|
protected override void OnMessage(MessageEventArgs e) {
|
||||||
Sess
|
|
||||||
}
|
}
|
||||||
|
|
||||||
protected override void OnClose(CloseEventArgs e) {
|
protected override void OnClose(CloseEventArgs e) {
|
||||||
|
|
Loading…
Reference in a new issue