├── .eslintrc ├── .gitignore ├── .travis.yml ├── .vscode └── settings.json ├── Procfile ├── _env ├── assets ├── .gitkeep ├── arrowLeft.png ├── arrowRight.png ├── chat.png ├── chat.sketch ├── close.png ├── close.sketch ├── happy.png ├── happy.sketch ├── header.png ├── sad.png ├── sad.sketch └── target.png ├── bench ├── bot.js └── data.txt ├── firebase.json ├── itch └── index.html ├── package.json ├── readme.md ├── scripts ├── server-watch └── test-watch ├── sqitch ├── deploy │ ├── appschema.sql │ ├── players.sql │ └── twitter.sql ├── revert │ ├── appschema.sql │ ├── players.sql │ └── twitter.sql ├── sqitch.conf.default ├── sqitch.plan └── verify │ ├── appschema.sql │ ├── players.sql │ └── twitter.sql ├── src ├── client │ ├── api.ts │ ├── buttons.tsx │ ├── components │ │ ├── Canvas.tsx │ │ ├── ControlBar │ │ │ ├── ChatControl.tsx │ │ │ ├── GameControl.tsx │ │ │ ├── IconButton.tsx │ │ │ └── index.tsx │ │ ├── GameContainer.tsx │ │ ├── InfoScreen │ │ │ ├── HelpScreen.tsx │ │ │ ├── PlayerScreen.tsx │ │ │ ├── ShareScreen.tsx │ │ │ └── index.tsx │ │ ├── Main.tsx │ │ ├── Timeline.tsx │ │ ├── TwitterAuth.tsx │ │ └── TwitterLink.tsx │ ├── flags.ts │ ├── initialize.ts │ ├── inputHandler.ts │ ├── main.tsx │ ├── mobileBridge.tsx │ ├── records.ts │ ├── reducer.ts │ ├── render │ │ ├── hud.ts │ │ ├── index.ts │ │ ├── leaderboard.ts │ │ ├── matchEnd.ts │ │ └── util │ │ │ └── createMemoizedRender.ts │ ├── runLoop.ts │ ├── standalone.tsx │ ├── util │ │ ├── debugLog.ts │ │ ├── featureFlags.ts │ │ ├── inputter.ts │ │ ├── isTouch.ts │ │ ├── keyCodes.ts │ │ ├── math.ts │ │ ├── registerErrorHandler.ts │ │ ├── registerPolyfill.ts │ │ ├── scaleCanvas.ts │ │ └── toOrdinal.ts │ └── ws.ts ├── server │ ├── ManygolfSocketManager.ts │ ├── __tests__ │ │ ├── actions.spec.ts │ │ └── reducer.spec.ts │ ├── actions.ts │ ├── main.ts │ ├── messages.ts │ ├── models.ts │ ├── nameGen.ts │ ├── records.ts │ ├── reducer.ts │ ├── twitter.ts │ └── util │ │ └── ManygolfSocket.ts ├── testData.ts ├── testEntry.js └── universal │ ├── RunLoop.ts │ ├── __tests__ │ └── levelGen.spec.ts │ ├── constants.ts │ ├── createImmutableReducer.ts │ ├── levelGen.ts │ ├── physics.ts │ └── protocol.ts ├── static ├── 404.html ├── icon.png └── manifest.json ├── styles ├── common.less ├── main.less └── standalone.less ├── templates ├── index.html └── standalone.html ├── testLevels └── level.json ├── tsconfig.json ├── tslint.json ├── typings └── custom.d.ts ├── webpack ├── base.js ├── dev.js ├── production.js ├── server.js └── test.js └── yarn.lock /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasboyt/manygolf/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasboyt/manygolf/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasboyt/manygolf/HEAD/.travis.yml -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasboyt/manygolf/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasboyt/manygolf/HEAD/Procfile -------------------------------------------------------------------------------- /_env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasboyt/manygolf/HEAD/_env -------------------------------------------------------------------------------- /assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/arrowLeft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasboyt/manygolf/HEAD/assets/arrowLeft.png -------------------------------------------------------------------------------- /assets/arrowRight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasboyt/manygolf/HEAD/assets/arrowRight.png -------------------------------------------------------------------------------- /assets/chat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasboyt/manygolf/HEAD/assets/chat.png -------------------------------------------------------------------------------- /assets/chat.sketch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasboyt/manygolf/HEAD/assets/chat.sketch -------------------------------------------------------------------------------- /assets/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasboyt/manygolf/HEAD/assets/close.png -------------------------------------------------------------------------------- /assets/close.sketch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasboyt/manygolf/HEAD/assets/close.sketch -------------------------------------------------------------------------------- /assets/happy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasboyt/manygolf/HEAD/assets/happy.png -------------------------------------------------------------------------------- /assets/happy.sketch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasboyt/manygolf/HEAD/assets/happy.sketch -------------------------------------------------------------------------------- /assets/header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasboyt/manygolf/HEAD/assets/header.png -------------------------------------------------------------------------------- /assets/sad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasboyt/manygolf/HEAD/assets/sad.png -------------------------------------------------------------------------------- /assets/sad.sketch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasboyt/manygolf/HEAD/assets/sad.sketch -------------------------------------------------------------------------------- /assets/target.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasboyt/manygolf/HEAD/assets/target.png -------------------------------------------------------------------------------- /bench/bot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasboyt/manygolf/HEAD/bench/bot.js -------------------------------------------------------------------------------- /bench/data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasboyt/manygolf/HEAD/bench/data.txt -------------------------------------------------------------------------------- /firebase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasboyt/manygolf/HEAD/firebase.json -------------------------------------------------------------------------------- /itch/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasboyt/manygolf/HEAD/itch/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasboyt/manygolf/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasboyt/manygolf/HEAD/readme.md -------------------------------------------------------------------------------- /scripts/server-watch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasboyt/manygolf/HEAD/scripts/server-watch -------------------------------------------------------------------------------- /scripts/test-watch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasboyt/manygolf/HEAD/scripts/test-watch -------------------------------------------------------------------------------- /sqitch/deploy/appschema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasboyt/manygolf/HEAD/sqitch/deploy/appschema.sql -------------------------------------------------------------------------------- /sqitch/deploy/players.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasboyt/manygolf/HEAD/sqitch/deploy/players.sql -------------------------------------------------------------------------------- /sqitch/deploy/twitter.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasboyt/manygolf/HEAD/sqitch/deploy/twitter.sql -------------------------------------------------------------------------------- /sqitch/revert/appschema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasboyt/manygolf/HEAD/sqitch/revert/appschema.sql -------------------------------------------------------------------------------- /sqitch/revert/players.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasboyt/manygolf/HEAD/sqitch/revert/players.sql -------------------------------------------------------------------------------- /sqitch/revert/twitter.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasboyt/manygolf/HEAD/sqitch/revert/twitter.sql -------------------------------------------------------------------------------- /sqitch/sqitch.conf.default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasboyt/manygolf/HEAD/sqitch/sqitch.conf.default -------------------------------------------------------------------------------- /sqitch/sqitch.plan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasboyt/manygolf/HEAD/sqitch/sqitch.plan -------------------------------------------------------------------------------- /sqitch/verify/appschema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasboyt/manygolf/HEAD/sqitch/verify/appschema.sql -------------------------------------------------------------------------------- /sqitch/verify/players.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasboyt/manygolf/HEAD/sqitch/verify/players.sql -------------------------------------------------------------------------------- /sqitch/verify/twitter.sql: -------------------------------------------------------------------------------- 1 | -- Verify manygolf:twitter on pg 2 | 3 | BEGIN; 4 | 5 | -- XXX Add verifications here. 6 | 7 | ROLLBACK; 8 | -------------------------------------------------------------------------------- /src/client/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasboyt/manygolf/HEAD/src/client/api.ts -------------------------------------------------------------------------------- /src/client/buttons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasboyt/manygolf/HEAD/src/client/buttons.tsx -------------------------------------------------------------------------------- /src/client/components/Canvas.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasboyt/manygolf/HEAD/src/client/components/Canvas.tsx -------------------------------------------------------------------------------- /src/client/components/ControlBar/ChatControl.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasboyt/manygolf/HEAD/src/client/components/ControlBar/ChatControl.tsx -------------------------------------------------------------------------------- /src/client/components/ControlBar/GameControl.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasboyt/manygolf/HEAD/src/client/components/ControlBar/GameControl.tsx -------------------------------------------------------------------------------- /src/client/components/ControlBar/IconButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasboyt/manygolf/HEAD/src/client/components/ControlBar/IconButton.tsx -------------------------------------------------------------------------------- /src/client/components/ControlBar/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasboyt/manygolf/HEAD/src/client/components/ControlBar/index.tsx -------------------------------------------------------------------------------- /src/client/components/GameContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasboyt/manygolf/HEAD/src/client/components/GameContainer.tsx -------------------------------------------------------------------------------- /src/client/components/InfoScreen/HelpScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasboyt/manygolf/HEAD/src/client/components/InfoScreen/HelpScreen.tsx -------------------------------------------------------------------------------- /src/client/components/InfoScreen/PlayerScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasboyt/manygolf/HEAD/src/client/components/InfoScreen/PlayerScreen.tsx -------------------------------------------------------------------------------- /src/client/components/InfoScreen/ShareScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasboyt/manygolf/HEAD/src/client/components/InfoScreen/ShareScreen.tsx -------------------------------------------------------------------------------- /src/client/components/InfoScreen/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasboyt/manygolf/HEAD/src/client/components/InfoScreen/index.tsx -------------------------------------------------------------------------------- /src/client/components/Main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasboyt/manygolf/HEAD/src/client/components/Main.tsx -------------------------------------------------------------------------------- /src/client/components/Timeline.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasboyt/manygolf/HEAD/src/client/components/Timeline.tsx -------------------------------------------------------------------------------- /src/client/components/TwitterAuth.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasboyt/manygolf/HEAD/src/client/components/TwitterAuth.tsx -------------------------------------------------------------------------------- /src/client/components/TwitterLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasboyt/manygolf/HEAD/src/client/components/TwitterLink.tsx -------------------------------------------------------------------------------- /src/client/flags.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasboyt/manygolf/HEAD/src/client/flags.ts -------------------------------------------------------------------------------- /src/client/initialize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasboyt/manygolf/HEAD/src/client/initialize.ts -------------------------------------------------------------------------------- /src/client/inputHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasboyt/manygolf/HEAD/src/client/inputHandler.ts -------------------------------------------------------------------------------- /src/client/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasboyt/manygolf/HEAD/src/client/main.tsx -------------------------------------------------------------------------------- /src/client/mobileBridge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasboyt/manygolf/HEAD/src/client/mobileBridge.tsx -------------------------------------------------------------------------------- /src/client/records.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasboyt/manygolf/HEAD/src/client/records.ts -------------------------------------------------------------------------------- /src/client/reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasboyt/manygolf/HEAD/src/client/reducer.ts -------------------------------------------------------------------------------- /src/client/render/hud.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasboyt/manygolf/HEAD/src/client/render/hud.ts -------------------------------------------------------------------------------- /src/client/render/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasboyt/manygolf/HEAD/src/client/render/index.ts -------------------------------------------------------------------------------- /src/client/render/leaderboard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasboyt/manygolf/HEAD/src/client/render/leaderboard.ts -------------------------------------------------------------------------------- /src/client/render/matchEnd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasboyt/manygolf/HEAD/src/client/render/matchEnd.ts -------------------------------------------------------------------------------- /src/client/render/util/createMemoizedRender.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasboyt/manygolf/HEAD/src/client/render/util/createMemoizedRender.ts -------------------------------------------------------------------------------- /src/client/runLoop.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasboyt/manygolf/HEAD/src/client/runLoop.ts -------------------------------------------------------------------------------- /src/client/standalone.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasboyt/manygolf/HEAD/src/client/standalone.tsx -------------------------------------------------------------------------------- /src/client/util/debugLog.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasboyt/manygolf/HEAD/src/client/util/debugLog.ts -------------------------------------------------------------------------------- /src/client/util/featureFlags.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasboyt/manygolf/HEAD/src/client/util/featureFlags.ts -------------------------------------------------------------------------------- /src/client/util/inputter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasboyt/manygolf/HEAD/src/client/util/inputter.ts -------------------------------------------------------------------------------- /src/client/util/isTouch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasboyt/manygolf/HEAD/src/client/util/isTouch.ts -------------------------------------------------------------------------------- /src/client/util/keyCodes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasboyt/manygolf/HEAD/src/client/util/keyCodes.ts -------------------------------------------------------------------------------- /src/client/util/math.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasboyt/manygolf/HEAD/src/client/util/math.ts -------------------------------------------------------------------------------- /src/client/util/registerErrorHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasboyt/manygolf/HEAD/src/client/util/registerErrorHandler.ts -------------------------------------------------------------------------------- /src/client/util/registerPolyfill.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasboyt/manygolf/HEAD/src/client/util/registerPolyfill.ts -------------------------------------------------------------------------------- /src/client/util/scaleCanvas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasboyt/manygolf/HEAD/src/client/util/scaleCanvas.ts -------------------------------------------------------------------------------- /src/client/util/toOrdinal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasboyt/manygolf/HEAD/src/client/util/toOrdinal.ts -------------------------------------------------------------------------------- /src/client/ws.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasboyt/manygolf/HEAD/src/client/ws.ts -------------------------------------------------------------------------------- /src/server/ManygolfSocketManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasboyt/manygolf/HEAD/src/server/ManygolfSocketManager.ts -------------------------------------------------------------------------------- /src/server/__tests__/actions.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasboyt/manygolf/HEAD/src/server/__tests__/actions.spec.ts -------------------------------------------------------------------------------- /src/server/__tests__/reducer.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasboyt/manygolf/HEAD/src/server/__tests__/reducer.spec.ts -------------------------------------------------------------------------------- /src/server/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasboyt/manygolf/HEAD/src/server/actions.ts -------------------------------------------------------------------------------- /src/server/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasboyt/manygolf/HEAD/src/server/main.ts -------------------------------------------------------------------------------- /src/server/messages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasboyt/manygolf/HEAD/src/server/messages.ts -------------------------------------------------------------------------------- /src/server/models.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasboyt/manygolf/HEAD/src/server/models.ts -------------------------------------------------------------------------------- /src/server/nameGen.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasboyt/manygolf/HEAD/src/server/nameGen.ts -------------------------------------------------------------------------------- /src/server/records.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasboyt/manygolf/HEAD/src/server/records.ts -------------------------------------------------------------------------------- /src/server/reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasboyt/manygolf/HEAD/src/server/reducer.ts -------------------------------------------------------------------------------- /src/server/twitter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasboyt/manygolf/HEAD/src/server/twitter.ts -------------------------------------------------------------------------------- /src/server/util/ManygolfSocket.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasboyt/manygolf/HEAD/src/server/util/ManygolfSocket.ts -------------------------------------------------------------------------------- /src/testData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasboyt/manygolf/HEAD/src/testData.ts -------------------------------------------------------------------------------- /src/testEntry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasboyt/manygolf/HEAD/src/testEntry.js -------------------------------------------------------------------------------- /src/universal/RunLoop.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasboyt/manygolf/HEAD/src/universal/RunLoop.ts -------------------------------------------------------------------------------- /src/universal/__tests__/levelGen.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasboyt/manygolf/HEAD/src/universal/__tests__/levelGen.spec.ts -------------------------------------------------------------------------------- /src/universal/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasboyt/manygolf/HEAD/src/universal/constants.ts -------------------------------------------------------------------------------- /src/universal/createImmutableReducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasboyt/manygolf/HEAD/src/universal/createImmutableReducer.ts -------------------------------------------------------------------------------- /src/universal/levelGen.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasboyt/manygolf/HEAD/src/universal/levelGen.ts -------------------------------------------------------------------------------- /src/universal/physics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasboyt/manygolf/HEAD/src/universal/physics.ts -------------------------------------------------------------------------------- /src/universal/protocol.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasboyt/manygolf/HEAD/src/universal/protocol.ts -------------------------------------------------------------------------------- /static/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasboyt/manygolf/HEAD/static/404.html -------------------------------------------------------------------------------- /static/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasboyt/manygolf/HEAD/static/icon.png -------------------------------------------------------------------------------- /static/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasboyt/manygolf/HEAD/static/manifest.json -------------------------------------------------------------------------------- /styles/common.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasboyt/manygolf/HEAD/styles/common.less -------------------------------------------------------------------------------- /styles/main.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasboyt/manygolf/HEAD/styles/main.less -------------------------------------------------------------------------------- /styles/standalone.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasboyt/manygolf/HEAD/styles/standalone.less -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasboyt/manygolf/HEAD/templates/index.html -------------------------------------------------------------------------------- /templates/standalone.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasboyt/manygolf/HEAD/templates/standalone.html -------------------------------------------------------------------------------- /testLevels/level.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasboyt/manygolf/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasboyt/manygolf/HEAD/tslint.json -------------------------------------------------------------------------------- /typings/custom.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasboyt/manygolf/HEAD/typings/custom.d.ts -------------------------------------------------------------------------------- /webpack/base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasboyt/manygolf/HEAD/webpack/base.js -------------------------------------------------------------------------------- /webpack/dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasboyt/manygolf/HEAD/webpack/dev.js -------------------------------------------------------------------------------- /webpack/production.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasboyt/manygolf/HEAD/webpack/production.js -------------------------------------------------------------------------------- /webpack/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasboyt/manygolf/HEAD/webpack/server.js -------------------------------------------------------------------------------- /webpack/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasboyt/manygolf/HEAD/webpack/test.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasboyt/manygolf/HEAD/yarn.lock --------------------------------------------------------------------------------