diff --git a/client/check.js b/client/check.js new file mode 100644 index 0000000..d10cc93 --- /dev/null +++ b/client/check.js @@ -0,0 +1,5 @@ +document.onload = function() { + + + Entrypoint.Main(); +} \ No newline at end of file diff --git a/client/error.html b/client/error.html new file mode 100644 index 0000000..048c9fe --- /dev/null +++ b/client/error.html @@ -0,0 +1,11 @@ + + + + Error + + + +

Your browser does not support a necessary feature to run this application.

+

Please upgrade your browser to the most recent version or install a modern browser, such as Mozilla Firefox or Google Chrome.

+ + \ No newline at end of file diff --git a/client/src/Entrypoint.ts b/client/src/Entrypoint.ts new file mode 100644 index 0000000..4e997ae --- /dev/null +++ b/client/src/Entrypoint.ts @@ -0,0 +1,5 @@ +class Entrypoint { + static Main(): void { + + } +} \ No newline at end of file diff --git a/client/src/FileCache.ts b/client/src/FileCache.ts index 4c23771..e7ae8e3 100644 --- a/client/src/FileCache.ts +++ b/client/src/FileCache.ts @@ -1,5 +1,7 @@ class FileCache { - static Initialize() { + static dbHandle: IDBDatabase = null; + + static Initialize(): void { } } \ No newline at end of file diff --git a/client/src/Init.js b/client/src/Init.js deleted file mode 100644 index 9dab121..0000000 --- a/client/src/Init.js +++ /dev/null @@ -1,6 +0,0 @@ -window.indexedDB = window.indexedDB || window.mozIndexedDB || window.webkitIndexedDB || window.msIndexedDB; -window.IDBTransaction = window.IDBTransaction || window.webkitIDBTransaction || window.msIDBTransaction; -window.IDBKeyRange = window.IDBKeyRange || window.webkitIDBKeyRange || window.msIDBKeyRange - -if (!window.indexedDB) - window.alert("Your browser doesn't support a stable version of IndexedDB."); \ No newline at end of file diff --git a/server/Server.cs b/server/Server.cs index 4fe4246..94a4506 100644 --- a/server/Server.cs +++ b/server/Server.cs @@ -17,11 +17,11 @@ namespace CircleScape { } protected override void OnMessage(MessageEventArgs e) { - + Sess } protected override void OnClose(CloseEventArgs e) { - + } } diff --git a/server/packages.config b/server/packages.config index 972a887..547a8c6 100644 --- a/server/packages.config +++ b/server/packages.config @@ -5,5 +5,5 @@ - + \ No newline at end of file