commit 8c72e75035143fa4ee24e00792d7b3c3fcf6cdef Author: Julian Date: Sun Jan 19 10:22:22 2020 +0100 Init commit diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..d163863 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +build/ \ No newline at end of file diff --git a/index.html b/index.html new file mode 100644 index 0000000..36e11ab --- /dev/null +++ b/index.html @@ -0,0 +1,8 @@ + +
+ Web Ocean +
+ + + + \ No newline at end of file diff --git a/package.json b/package.json new file mode 100644 index 0000000..eb0af83 --- /dev/null +++ b/package.json @@ -0,0 +1,19 @@ +{ + "name": "web-ocean", + "version": "0.0.1", + "description": "Simulating a ocean with typescript and webgl.", + "main": "index.html", + "scripts": { + "test": "echo \"Error: no test specified\" && exit 1" + }, + "keywords": [ + "webgl", + "typescript", + "simulation", + "ocean", + "water", + "waves" + ], + "author": "Julian Niessner", + "license": "ISC" +} diff --git a/src/index.js b/src/index.js new file mode 100644 index 0000000..db79aa1 --- /dev/null +++ b/src/index.js @@ -0,0 +1 @@ +console.log("Hello World!") \ No newline at end of file