From 8c72e75035143fa4ee24e00792d7b3c3fcf6cdef Mon Sep 17 00:00:00 2001 From: Julian Date: Sun, 19 Jan 2020 10:22:22 +0100 Subject: [PATCH] Init commit --- .gitignore | 1 + index.html | 8 ++++++++ package.json | 19 +++++++++++++++++++ src/index.js | 1 + 4 files changed, 29 insertions(+) create mode 100644 .gitignore create mode 100644 index.html create mode 100644 package.json create mode 100644 src/index.js 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