├── .circleci └── config.yml ├── .editorconfig ├── .gitignore ├── .hooks └── pre-commit ├── .images └── .gitkeep ├── .vscode └── settings.json ├── README.md ├── client ├── .babelrc ├── .dockerignore ├── .nvmrc ├── Dockerfile ├── Dockerfile.build ├── elm-analyse.json ├── elm.json ├── elm │ ├── .Example │ │ ├── Messages.elm │ │ ├── State.elm │ │ ├── Types.elm │ │ └── View.elm │ ├── Assets │ │ ├── Audio │ │ │ ├── Messages.elm │ │ │ ├── State.elm │ │ │ └── Types.elm │ │ ├── Fetch.elm │ │ ├── Font │ │ │ ├── Decoders.elm │ │ │ ├── Messages.elm │ │ │ ├── Shaders.elm │ │ │ ├── State.elm │ │ │ ├── Types.elm │ │ │ └── View.elm │ │ ├── Frame │ │ │ └── View.elm │ │ ├── Icon │ │ │ └── View.elm │ │ ├── Manifest │ │ │ ├── Decoders.elm │ │ │ ├── Messages.elm │ │ │ ├── State.elm │ │ │ └── Types.elm │ │ ├── Messages.elm │ │ ├── State.elm │ │ ├── Texture │ │ │ ├── Messages.elm │ │ │ ├── State.elm │ │ │ └── Types.elm │ │ └── Types.elm │ ├── Buttons │ │ ├── State.elm │ │ ├── Types.elm │ │ └── View.elm │ ├── Carousel.elm │ ├── Chat │ │ ├── Decoders.elm │ │ ├── Messages.elm │ │ ├── State.elm │ │ ├── Types.elm │ │ └── View.elm │ ├── Collision.elm │ ├── Colour.elm │ ├── Drag.elm │ ├── Form.elm │ ├── Keyboard.elm │ ├── Line │ │ ├── Decoders.elm │ │ ├── Types.elm │ │ └── View.elm │ ├── Listener.elm │ ├── Main.elm │ ├── Main │ │ ├── Decoders.elm │ │ ├── Messages.elm │ │ ├── State.elm │ │ ├── Types.elm │ │ └── View.elm │ ├── Mode.elm │ ├── Mouse.elm │ ├── Notifications │ │ ├── Messages.elm │ │ ├── State.elm │ │ ├── Types.elm │ │ └── View.elm │ ├── Ports.elm │ ├── Quaternion.elm │ ├── Quest │ │ ├── Decoders.elm │ │ └── Types.elm │ ├── Render │ │ ├── Meshes.elm │ │ ├── Primitives.elm │ │ ├── Shaders.elm │ │ ├── Types.elm │ │ └── Uniforms.elm │ ├── Ripple │ │ ├── State.elm │ │ ├── Types.elm │ │ └── View.elm │ ├── Room │ │ ├── Connected │ │ │ ├── Decoders.elm │ │ │ ├── GameState │ │ │ │ ├── Background │ │ │ │ │ └── View.elm │ │ │ │ ├── DeckBuilding │ │ │ │ │ ├── Decoders.elm │ │ │ │ │ ├── Encoders.elm │ │ │ │ │ ├── Messages.elm │ │ │ │ │ ├── RuneSelect │ │ │ │ │ │ ├── Decoders.elm │ │ │ │ │ │ ├── Entities.elm │ │ │ │ │ │ ├── Messages.elm │ │ │ │ │ │ ├── State.elm │ │ │ │ │ │ ├── Types.elm │ │ │ │ │ │ └── View.elm │ │ │ │ │ ├── State.elm │ │ │ │ │ ├── Types.elm │ │ │ │ │ └── View.elm │ │ │ │ ├── Decoders.elm │ │ │ │ ├── Messages.elm │ │ │ │ ├── PlayState │ │ │ │ │ ├── Aftermath │ │ │ │ │ │ ├── State.elm │ │ │ │ │ │ └── Types.elm │ │ │ │ │ ├── Animation │ │ │ │ │ │ ├── Decoders.elm │ │ │ │ │ │ ├── State.elm │ │ │ │ │ │ └── Types.elm │ │ │ │ │ ├── Decoders.elm │ │ │ │ │ ├── Endgame │ │ │ │ │ │ └── View.elm │ │ │ │ │ ├── Game │ │ │ │ │ │ ├── Entity.elm │ │ │ │ │ │ ├── State.elm │ │ │ │ │ │ └── Types.elm │ │ │ │ │ ├── Messages.elm │ │ │ │ │ ├── Model │ │ │ │ │ │ ├── Card │ │ │ │ │ │ │ ├── Decoders.elm │ │ │ │ │ │ │ ├── State.elm │ │ │ │ │ │ │ ├── Types.elm │ │ │ │ │ │ │ └── View.elm │ │ │ │ │ │ ├── Debug3D.elm │ │ │ │ │ │ ├── Decoders.elm │ │ │ │ │ │ ├── Diff.elm │ │ │ │ │ │ ├── Hand │ │ │ │ │ │ │ ├── Entities.elm │ │ │ │ │ │ │ ├── State.elm │ │ │ │ │ │ │ ├── Types.elm │ │ │ │ │ │ │ └── View.elm │ │ │ │ │ │ ├── Holding │ │ │ │ │ │ │ ├── State.elm │ │ │ │ │ │ │ ├── Types.elm │ │ │ │ │ │ │ └── View.elm │ │ │ │ │ │ ├── Hover.elm │ │ │ │ │ │ ├── Stack │ │ │ │ │ │ │ ├── Decoders.elm │ │ │ │ │ │ │ ├── Entities.elm │ │ │ │ │ │ │ ├── State.elm │ │ │ │ │ │ │ ├── Types.elm │ │ │ │ │ │ │ └── View.elm │ │ │ │ │ │ ├── State.elm │ │ │ │ │ │ ├── Status │ │ │ │ │ │ │ ├── Decoders.elm │ │ │ │ │ │ │ ├── State.elm │ │ │ │ │ │ │ └── Types.elm │ │ │ │ │ │ ├── Types.elm │ │ │ │ │ │ ├── View.elm │ │ │ │ │ │ ├── Wave.elm │ │ │ │ │ │ ├── Wheel │ │ │ │ │ │ │ ├── Decoders.elm │ │ │ │ │ │ │ ├── State.elm │ │ │ │ │ │ │ └── Types.elm │ │ │ │ │ │ └── WhichPlayer │ │ │ │ │ │ │ ├── Decoders.elm │ │ │ │ │ │ │ ├── State.elm │ │ │ │ │ │ │ └── Types.elm │ │ │ │ │ ├── Resolvable │ │ │ │ │ │ ├── Decoders.elm │ │ │ │ │ │ ├── State.elm │ │ │ │ │ │ └── Types.elm │ │ │ │ │ ├── State.elm │ │ │ │ │ ├── Types.elm │ │ │ │ │ └── View.elm │ │ │ │ ├── State.elm │ │ │ │ ├── Types.elm │ │ │ │ ├── Vfx │ │ │ │ │ ├── State.elm │ │ │ │ │ └── Types.elm │ │ │ │ ├── View.elm │ │ │ │ └── Waiting │ │ │ │ │ ├── Decoders.elm │ │ │ │ │ ├── State.elm │ │ │ │ │ ├── Types.elm │ │ │ │ │ └── View.elm │ │ │ ├── Messages.elm │ │ │ ├── Players.elm │ │ │ ├── State.elm │ │ │ ├── Tutorial.elm │ │ │ ├── Types.elm │ │ │ └── View.elm │ │ ├── Create │ │ │ ├── Messages.elm │ │ │ ├── State.elm │ │ │ ├── Types.elm │ │ │ └── View.elm │ │ ├── Entrypoint │ │ │ ├── Decoders.elm │ │ │ ├── Messages.elm │ │ │ ├── State.elm │ │ │ ├── Types.elm │ │ │ └── View.elm │ │ ├── Feedback │ │ │ ├── Decoders.elm │ │ │ ├── Messages.elm │ │ │ ├── State.elm │ │ │ ├── Types.elm │ │ │ └── View.elm │ │ ├── GameType.elm │ │ ├── Generators.elm │ │ ├── Leaderboard │ │ │ ├── Decoders.elm │ │ │ ├── Messages.elm │ │ │ ├── State.elm │ │ │ ├── Types.elm │ │ │ └── View.elm │ │ ├── League │ │ │ ├── Decoders.elm │ │ │ ├── Messages.elm │ │ │ ├── State.elm │ │ │ ├── Types.elm │ │ │ └── View.elm │ │ ├── Lobby │ │ │ ├── Messages.elm │ │ │ ├── State.elm │ │ │ ├── Types.elm │ │ │ └── View.elm │ │ ├── Login │ │ │ ├── Decoders.elm │ │ │ ├── Messages.elm │ │ │ ├── State.elm │ │ │ ├── Types.elm │ │ │ └── View.elm │ │ ├── Messages.elm │ │ ├── Profile │ │ │ ├── Decoders.elm │ │ │ ├── Messages.elm │ │ │ ├── State.elm │ │ │ ├── Types.elm │ │ │ └── View.elm │ │ ├── Replay │ │ │ ├── Decoders.elm │ │ │ ├── Messages.elm │ │ │ ├── State.elm │ │ │ ├── Types.elm │ │ │ └── View.elm │ │ ├── Signup │ │ │ ├── Decoders.elm │ │ │ ├── Messages.elm │ │ │ ├── State.elm │ │ │ ├── Types.elm │ │ │ └── View.elm │ │ ├── State.elm │ │ ├── Types.elm │ │ └── View.elm │ ├── Routing │ │ ├── State.elm │ │ └── Types.elm │ ├── Settings │ │ ├── Messages.elm │ │ ├── State.elm │ │ ├── Types.elm │ │ └── View.elm │ ├── Stats.elm │ ├── TimeLimit.elm │ ├── Unproject.elm │ └── Util.elm ├── gulpfile.babel.js ├── html │ ├── game.hbs │ ├── index.hbs │ └── partials │ │ ├── favicons.hbs │ │ ├── ga.hbs │ │ └── socials.hbs ├── js │ └── start.js ├── nginx.conf ├── package-lock.json ├── package.json ├── sass │ ├── _buttons.scss │ ├── _canvas.scss │ ├── _chat.scss │ ├── _connecting.scss │ ├── _connection-lost.scss │ ├── _create.scss │ ├── _feedback.scss │ ├── _form.scss │ ├── _input-group.scss │ ├── _leaderboard.scss │ ├── _league.scss │ ├── _login.scss │ ├── _names.scss │ ├── _notifications.scss │ ├── _presence.scss │ ├── _profile.scss │ ├── _replay.scss │ ├── _settings.scss │ ├── _signup.scss │ ├── _theme.scss │ ├── _waiting.scss │ └── main.scss ├── ssl │ ├── .gitkeep │ ├── www.galgagame.com.ca-bundle.secret │ ├── www.galgagame.com.key.secret │ ├── www.ringofworlds.com.ca-bundle.secret │ └── www.ringofworlds.com.key.secret └── static │ └── dev │ ├── favicons │ ├── android-icon-144x144.png │ ├── android-icon-192x192.png │ ├── android-icon-36x36.png │ ├── android-icon-48x48.png │ ├── android-icon-72x72.png │ ├── android-icon-96x96.png │ ├── apple-icon-114x114.png │ ├── apple-icon-120x120.png │ ├── apple-icon-144x144.png │ ├── apple-icon-152x152.png │ ├── apple-icon-180x180.png │ ├── apple-icon-57x57.png │ ├── apple-icon-60x60.png │ ├── apple-icon-72x72.png │ ├── apple-icon-76x76.png │ ├── apple-icon-precomposed.png │ ├── apple-icon.png │ ├── browserconfig.xml │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ ├── favicon-96x96.png │ ├── favicon.ico │ ├── manifest.json │ ├── ms-icon-144x144.png │ ├── ms-icon-150x150.png │ ├── ms-icon-310x310.png │ └── ms-icon-70x70.png │ ├── fonts │ ├── futura │ │ ├── fontmap.json │ │ └── fontmap.png │ └── icons │ │ ├── fontmap.json │ │ └── fontmap.png │ ├── img │ ├── icon │ │ ├── close.svg │ │ ├── hamburger.svg │ │ └── settings.svg │ ├── landing │ │ ├── hero.png │ │ ├── screenshot-char-select.png │ │ ├── screenshot-gameplay-2.png │ │ ├── screenshot-gameplay-3.png │ │ └── screenshot-gameplay.png │ └── textures │ │ ├── arrow.png │ │ ├── blighted.png │ │ ├── bonusDamage.png │ │ ├── cardBack.png │ │ ├── cardBackOutline.png │ │ ├── cardOutline.png │ │ ├── cards │ │ ├── angel │ │ │ ├── coin.png │ │ │ ├── cup.png │ │ │ ├── sword.png │ │ │ └── wand.png │ │ ├── blood │ │ │ ├── coin.png │ │ │ ├── cup.png │ │ │ ├── sword.png │ │ │ └── wand.png │ │ ├── clay │ │ │ ├── coin.png │ │ │ ├── cup.png │ │ │ ├── sword.png │ │ │ └── wand.png │ │ ├── dark │ │ │ ├── coin.png │ │ │ ├── cup.png │ │ │ ├── sword.png │ │ │ └── wand.png │ │ ├── devil │ │ │ ├── coin.png │ │ │ ├── cup.png │ │ │ ├── sword.png │ │ │ └── wand.png │ │ ├── duality │ │ │ ├── coin.png │ │ │ ├── cup.png │ │ │ ├── sword.png │ │ │ └── wand.png │ │ ├── eye │ │ │ ├── coin.png │ │ │ ├── cup.png │ │ │ ├── sword.png │ │ │ └── wand.png │ │ ├── fever │ │ │ ├── coin.png │ │ │ ├── cup.png │ │ │ ├── sword.png │ │ │ └── wand.png │ │ ├── fire │ │ │ ├── coin.png │ │ │ ├── cup.png │ │ │ ├── sword.png │ │ │ └── wand.png │ │ ├── gift │ │ │ ├── coin.png │ │ │ ├── cup.png │ │ │ ├── sword.png │ │ │ └── wand.png │ │ ├── glass │ │ │ ├── coin.png │ │ │ ├── cup.png │ │ │ ├── sword.png │ │ │ └── wand.png │ │ ├── gold │ │ │ ├── coin.png │ │ │ ├── cup.png │ │ │ ├── sword.png │ │ │ └── wand.png │ │ ├── mercy │ │ │ ├── coin.png │ │ │ ├── cup.png │ │ │ ├── sword.png │ │ │ └── wand.png │ │ ├── mirror │ │ │ ├── coin.png │ │ │ ├── cup.png │ │ │ ├── sword.png │ │ │ └── wand.png │ │ ├── plastic │ │ │ ├── coin.png │ │ │ ├── cup.png │ │ │ ├── sword.png │ │ │ └── wand.png │ │ ├── shroom │ │ │ ├── coin.png │ │ │ ├── cup.png │ │ │ ├── sword.png │ │ │ └── wand.png │ │ ├── strange │ │ │ ├── shroud.png │ │ │ ├── sleep.png │ │ │ ├── snag.png │ │ │ ├── sphere.png │ │ │ ├── spore.png │ │ │ ├── start.png │ │ │ └── stop.png │ │ ├── trick │ │ │ ├── coin.png │ │ │ ├── cup.png │ │ │ ├── sword.png │ │ │ └── wand.png │ │ ├── void │ │ │ ├── coin.png │ │ │ ├── cup.png │ │ │ ├── sword.png │ │ │ └── wand.png │ │ └── water │ │ │ ├── coin.png │ │ │ ├── cup.png │ │ │ ├── sword.png │ │ │ └── wand.png │ │ ├── fragile.png │ │ ├── invisible.png │ │ ├── laser.png │ │ ├── multiply.png │ │ ├── next.png │ │ ├── noise.png │ │ ├── nonlethal.png │ │ ├── radial.png │ │ └── revealed.png │ ├── music │ └── background.mp3 │ └── sfx │ ├── bite.mp3 │ ├── bounce.mp3 │ ├── burn.mp3 │ ├── click.mp3 │ ├── coin.mp3 │ ├── curse.mp3 │ ├── damage.mp3 │ ├── defeat.mp3 │ ├── dice.mp3 │ ├── draw.mp3 │ ├── evilTick.mp3 │ ├── heal.mp3 │ ├── hover.mp3 │ ├── moveStack.mp3 │ ├── notify.mp3 │ ├── obliterate.mp3 │ ├── playCard.mp3 │ ├── reveal.mp3 │ ├── rotate.mp3 │ ├── slash.mp3 │ ├── transmute.mp3 │ ├── tricked.mp3 │ ├── unlock.mp3 │ ├── victory.mp3 │ ├── windup.mp3 │ └── xp.mp3 ├── database ├── Dockerfile ├── init.sql └── migrations │ ├── add_indexes.sql │ ├── add_progress.sql │ ├── add_replay_display_usernames.sql │ └── username_to_id.sql ├── docker-compose.prod.yml ├── docker-compose.yml ├── prod.env.secret ├── redis └── Dockerfile ├── scripts ├── copyHooks ├── decryptSecrets ├── deploy ├── encryptSecrets ├── flip ├── logs ├── makeFakeCertificates ├── newElmModule ├── purgeOtherDroplets ├── sshDev ├── systemMessage └── verifySsl └── server ├── .dockerignore ├── .ghci ├── Dockerfile ├── LICENSE ├── Setup.hs ├── app └── Main.hs ├── galgagame.cabal ├── prod.Dockerfile ├── src ├── Act.hs ├── ArtificialIntelligence.hs ├── ArtificialIntelligence.hs-boot ├── Auth │ ├── Apps.hs │ ├── Schema.hs │ └── Views.hs ├── Bounce.hs ├── Browse │ ├── Apps.hs │ └── Views.hs ├── Card.hs ├── CardAnim.hs ├── Cards.hs ├── Cards.hs-boot ├── Client.hs ├── Command.hs ├── Config.hs ├── DSL │ ├── Alpha.hs │ ├── Alpha │ │ ├── Actions.hs │ │ ├── DSL.hs │ │ ├── DSL.hs-boot │ │ └── Interpreters.hs │ ├── Anim.hs │ ├── Anim │ │ ├── Actions.hs │ │ ├── DSL.hs │ │ └── Interpreters.hs │ ├── Beta.hs │ └── Beta │ │ ├── Actions.hs │ │ ├── DSL.hs │ │ ├── DSL.hs-boot │ │ └── Interpreters.hs ├── Database.hs ├── DeckBuilding.hs ├── DeckBuilding.hs-boot ├── Discard.hs ├── Ease.hs ├── Encounter.hs ├── Feedback │ ├── Apps.hs │ ├── Schema.hs │ └── Views.hs ├── GameCommand.hs ├── GameState.hs ├── GodMode.hs ├── HandCard.hs ├── Leaderboard │ ├── Apps.hs │ ├── Leaderboard.hs │ └── Views.hs ├── League │ ├── Apps.hs │ ├── Schema.hs │ └── Views.hs ├── Life.hs ├── Log.hs ├── Metrics.hs ├── Mirror.hs ├── Model.hs ├── ModelDiff.hs ├── Negotiation.hs ├── Outcome.hs ├── Player.hs ├── Presence │ ├── Apps.hs │ ├── Presence.hs │ └── Views.hs ├── Profile │ ├── Apps.hs │ └── Views.hs ├── Quest.hs ├── Replay │ ├── Active.hs │ ├── Apps.hs │ ├── Final.hs │ ├── Schema.hs │ └── Views.hs ├── ResolveData.hs ├── Room.hs ├── Scenario.hs ├── Schema.hs ├── Server.hs ├── Stack.hs ├── StackCard.hs ├── Start.hs ├── Stats │ ├── Experience.hs │ ├── Progress.hs │ ├── Schema.hs │ └── Stats.hs ├── StatusEff.hs ├── Transmutation.hs ├── User │ ├── Apps.hs │ └── User.hs ├── Util.hs └── Wheel.hs ├── stack.yaml ├── stack.yaml.lock └── test ├── GameSpec.hs └── Spec.hs /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/.gitignore -------------------------------------------------------------------------------- /.hooks/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/.hooks/pre-commit -------------------------------------------------------------------------------- /.images/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "editor.formatOnSave": true 3 | } -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/README.md -------------------------------------------------------------------------------- /client/.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["env"] 3 | } 4 | -------------------------------------------------------------------------------- /client/.dockerignore: -------------------------------------------------------------------------------- 1 | elm-stuff 2 | node_modules 3 | static/dev 4 | -------------------------------------------------------------------------------- /client/.nvmrc: -------------------------------------------------------------------------------- 1 | v12.22.5 2 | -------------------------------------------------------------------------------- /client/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/Dockerfile -------------------------------------------------------------------------------- /client/Dockerfile.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/Dockerfile.build -------------------------------------------------------------------------------- /client/elm-analyse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm-analyse.json -------------------------------------------------------------------------------- /client/elm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm.json -------------------------------------------------------------------------------- /client/elm/.Example/Messages.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/.Example/Messages.elm -------------------------------------------------------------------------------- /client/elm/.Example/State.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/.Example/State.elm -------------------------------------------------------------------------------- /client/elm/.Example/Types.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/.Example/Types.elm -------------------------------------------------------------------------------- /client/elm/.Example/View.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/.Example/View.elm -------------------------------------------------------------------------------- /client/elm/Assets/Audio/Messages.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Assets/Audio/Messages.elm -------------------------------------------------------------------------------- /client/elm/Assets/Audio/State.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Assets/Audio/State.elm -------------------------------------------------------------------------------- /client/elm/Assets/Audio/Types.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Assets/Audio/Types.elm -------------------------------------------------------------------------------- /client/elm/Assets/Fetch.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Assets/Fetch.elm -------------------------------------------------------------------------------- /client/elm/Assets/Font/Decoders.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Assets/Font/Decoders.elm -------------------------------------------------------------------------------- /client/elm/Assets/Font/Messages.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Assets/Font/Messages.elm -------------------------------------------------------------------------------- /client/elm/Assets/Font/Shaders.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Assets/Font/Shaders.elm -------------------------------------------------------------------------------- /client/elm/Assets/Font/State.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Assets/Font/State.elm -------------------------------------------------------------------------------- /client/elm/Assets/Font/Types.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Assets/Font/Types.elm -------------------------------------------------------------------------------- /client/elm/Assets/Font/View.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Assets/Font/View.elm -------------------------------------------------------------------------------- /client/elm/Assets/Frame/View.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Assets/Frame/View.elm -------------------------------------------------------------------------------- /client/elm/Assets/Icon/View.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Assets/Icon/View.elm -------------------------------------------------------------------------------- /client/elm/Assets/Manifest/Decoders.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Assets/Manifest/Decoders.elm -------------------------------------------------------------------------------- /client/elm/Assets/Manifest/Messages.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Assets/Manifest/Messages.elm -------------------------------------------------------------------------------- /client/elm/Assets/Manifest/State.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Assets/Manifest/State.elm -------------------------------------------------------------------------------- /client/elm/Assets/Manifest/Types.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Assets/Manifest/Types.elm -------------------------------------------------------------------------------- /client/elm/Assets/Messages.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Assets/Messages.elm -------------------------------------------------------------------------------- /client/elm/Assets/State.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Assets/State.elm -------------------------------------------------------------------------------- /client/elm/Assets/Texture/Messages.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Assets/Texture/Messages.elm -------------------------------------------------------------------------------- /client/elm/Assets/Texture/State.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Assets/Texture/State.elm -------------------------------------------------------------------------------- /client/elm/Assets/Texture/Types.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Assets/Texture/Types.elm -------------------------------------------------------------------------------- /client/elm/Assets/Types.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Assets/Types.elm -------------------------------------------------------------------------------- /client/elm/Buttons/State.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Buttons/State.elm -------------------------------------------------------------------------------- /client/elm/Buttons/Types.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Buttons/Types.elm -------------------------------------------------------------------------------- /client/elm/Buttons/View.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Buttons/View.elm -------------------------------------------------------------------------------- /client/elm/Carousel.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Carousel.elm -------------------------------------------------------------------------------- /client/elm/Chat/Decoders.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Chat/Decoders.elm -------------------------------------------------------------------------------- /client/elm/Chat/Messages.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Chat/Messages.elm -------------------------------------------------------------------------------- /client/elm/Chat/State.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Chat/State.elm -------------------------------------------------------------------------------- /client/elm/Chat/Types.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Chat/Types.elm -------------------------------------------------------------------------------- /client/elm/Chat/View.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Chat/View.elm -------------------------------------------------------------------------------- /client/elm/Collision.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Collision.elm -------------------------------------------------------------------------------- /client/elm/Colour.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Colour.elm -------------------------------------------------------------------------------- /client/elm/Drag.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Drag.elm -------------------------------------------------------------------------------- /client/elm/Form.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Form.elm -------------------------------------------------------------------------------- /client/elm/Keyboard.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Keyboard.elm -------------------------------------------------------------------------------- /client/elm/Line/Decoders.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Line/Decoders.elm -------------------------------------------------------------------------------- /client/elm/Line/Types.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Line/Types.elm -------------------------------------------------------------------------------- /client/elm/Line/View.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Line/View.elm -------------------------------------------------------------------------------- /client/elm/Listener.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Listener.elm -------------------------------------------------------------------------------- /client/elm/Main.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Main.elm -------------------------------------------------------------------------------- /client/elm/Main/Decoders.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Main/Decoders.elm -------------------------------------------------------------------------------- /client/elm/Main/Messages.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Main/Messages.elm -------------------------------------------------------------------------------- /client/elm/Main/State.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Main/State.elm -------------------------------------------------------------------------------- /client/elm/Main/Types.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Main/Types.elm -------------------------------------------------------------------------------- /client/elm/Main/View.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Main/View.elm -------------------------------------------------------------------------------- /client/elm/Mode.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Mode.elm -------------------------------------------------------------------------------- /client/elm/Mouse.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Mouse.elm -------------------------------------------------------------------------------- /client/elm/Notifications/Messages.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Notifications/Messages.elm -------------------------------------------------------------------------------- /client/elm/Notifications/State.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Notifications/State.elm -------------------------------------------------------------------------------- /client/elm/Notifications/Types.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Notifications/Types.elm -------------------------------------------------------------------------------- /client/elm/Notifications/View.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Notifications/View.elm -------------------------------------------------------------------------------- /client/elm/Ports.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Ports.elm -------------------------------------------------------------------------------- /client/elm/Quaternion.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Quaternion.elm -------------------------------------------------------------------------------- /client/elm/Quest/Decoders.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Quest/Decoders.elm -------------------------------------------------------------------------------- /client/elm/Quest/Types.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Quest/Types.elm -------------------------------------------------------------------------------- /client/elm/Render/Meshes.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Render/Meshes.elm -------------------------------------------------------------------------------- /client/elm/Render/Primitives.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Render/Primitives.elm -------------------------------------------------------------------------------- /client/elm/Render/Shaders.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Render/Shaders.elm -------------------------------------------------------------------------------- /client/elm/Render/Types.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Render/Types.elm -------------------------------------------------------------------------------- /client/elm/Render/Uniforms.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Render/Uniforms.elm -------------------------------------------------------------------------------- /client/elm/Ripple/State.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Ripple/State.elm -------------------------------------------------------------------------------- /client/elm/Ripple/Types.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Ripple/Types.elm -------------------------------------------------------------------------------- /client/elm/Ripple/View.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Ripple/View.elm -------------------------------------------------------------------------------- /client/elm/Room/Connected/Decoders.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Room/Connected/Decoders.elm -------------------------------------------------------------------------------- /client/elm/Room/Connected/GameState/Background/View.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Room/Connected/GameState/Background/View.elm -------------------------------------------------------------------------------- /client/elm/Room/Connected/GameState/DeckBuilding/Decoders.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Room/Connected/GameState/DeckBuilding/Decoders.elm -------------------------------------------------------------------------------- /client/elm/Room/Connected/GameState/DeckBuilding/Encoders.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Room/Connected/GameState/DeckBuilding/Encoders.elm -------------------------------------------------------------------------------- /client/elm/Room/Connected/GameState/DeckBuilding/Messages.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Room/Connected/GameState/DeckBuilding/Messages.elm -------------------------------------------------------------------------------- /client/elm/Room/Connected/GameState/DeckBuilding/RuneSelect/Decoders.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Room/Connected/GameState/DeckBuilding/RuneSelect/Decoders.elm -------------------------------------------------------------------------------- /client/elm/Room/Connected/GameState/DeckBuilding/RuneSelect/Entities.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Room/Connected/GameState/DeckBuilding/RuneSelect/Entities.elm -------------------------------------------------------------------------------- /client/elm/Room/Connected/GameState/DeckBuilding/RuneSelect/Messages.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Room/Connected/GameState/DeckBuilding/RuneSelect/Messages.elm -------------------------------------------------------------------------------- /client/elm/Room/Connected/GameState/DeckBuilding/RuneSelect/State.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Room/Connected/GameState/DeckBuilding/RuneSelect/State.elm -------------------------------------------------------------------------------- /client/elm/Room/Connected/GameState/DeckBuilding/RuneSelect/Types.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Room/Connected/GameState/DeckBuilding/RuneSelect/Types.elm -------------------------------------------------------------------------------- /client/elm/Room/Connected/GameState/DeckBuilding/RuneSelect/View.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Room/Connected/GameState/DeckBuilding/RuneSelect/View.elm -------------------------------------------------------------------------------- /client/elm/Room/Connected/GameState/DeckBuilding/State.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Room/Connected/GameState/DeckBuilding/State.elm -------------------------------------------------------------------------------- /client/elm/Room/Connected/GameState/DeckBuilding/Types.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Room/Connected/GameState/DeckBuilding/Types.elm -------------------------------------------------------------------------------- /client/elm/Room/Connected/GameState/DeckBuilding/View.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Room/Connected/GameState/DeckBuilding/View.elm -------------------------------------------------------------------------------- /client/elm/Room/Connected/GameState/Decoders.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Room/Connected/GameState/Decoders.elm -------------------------------------------------------------------------------- /client/elm/Room/Connected/GameState/Messages.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Room/Connected/GameState/Messages.elm -------------------------------------------------------------------------------- /client/elm/Room/Connected/GameState/PlayState/Aftermath/State.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Room/Connected/GameState/PlayState/Aftermath/State.elm -------------------------------------------------------------------------------- /client/elm/Room/Connected/GameState/PlayState/Aftermath/Types.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Room/Connected/GameState/PlayState/Aftermath/Types.elm -------------------------------------------------------------------------------- /client/elm/Room/Connected/GameState/PlayState/Animation/Decoders.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Room/Connected/GameState/PlayState/Animation/Decoders.elm -------------------------------------------------------------------------------- /client/elm/Room/Connected/GameState/PlayState/Animation/State.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Room/Connected/GameState/PlayState/Animation/State.elm -------------------------------------------------------------------------------- /client/elm/Room/Connected/GameState/PlayState/Animation/Types.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Room/Connected/GameState/PlayState/Animation/Types.elm -------------------------------------------------------------------------------- /client/elm/Room/Connected/GameState/PlayState/Decoders.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Room/Connected/GameState/PlayState/Decoders.elm -------------------------------------------------------------------------------- /client/elm/Room/Connected/GameState/PlayState/Endgame/View.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Room/Connected/GameState/PlayState/Endgame/View.elm -------------------------------------------------------------------------------- /client/elm/Room/Connected/GameState/PlayState/Game/Entity.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Room/Connected/GameState/PlayState/Game/Entity.elm -------------------------------------------------------------------------------- /client/elm/Room/Connected/GameState/PlayState/Game/State.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Room/Connected/GameState/PlayState/Game/State.elm -------------------------------------------------------------------------------- /client/elm/Room/Connected/GameState/PlayState/Game/Types.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Room/Connected/GameState/PlayState/Game/Types.elm -------------------------------------------------------------------------------- /client/elm/Room/Connected/GameState/PlayState/Messages.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Room/Connected/GameState/PlayState/Messages.elm -------------------------------------------------------------------------------- /client/elm/Room/Connected/GameState/PlayState/Model/Card/Decoders.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Room/Connected/GameState/PlayState/Model/Card/Decoders.elm -------------------------------------------------------------------------------- /client/elm/Room/Connected/GameState/PlayState/Model/Card/State.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Room/Connected/GameState/PlayState/Model/Card/State.elm -------------------------------------------------------------------------------- /client/elm/Room/Connected/GameState/PlayState/Model/Card/Types.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Room/Connected/GameState/PlayState/Model/Card/Types.elm -------------------------------------------------------------------------------- /client/elm/Room/Connected/GameState/PlayState/Model/Card/View.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Room/Connected/GameState/PlayState/Model/Card/View.elm -------------------------------------------------------------------------------- /client/elm/Room/Connected/GameState/PlayState/Model/Debug3D.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Room/Connected/GameState/PlayState/Model/Debug3D.elm -------------------------------------------------------------------------------- /client/elm/Room/Connected/GameState/PlayState/Model/Decoders.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Room/Connected/GameState/PlayState/Model/Decoders.elm -------------------------------------------------------------------------------- /client/elm/Room/Connected/GameState/PlayState/Model/Diff.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Room/Connected/GameState/PlayState/Model/Diff.elm -------------------------------------------------------------------------------- /client/elm/Room/Connected/GameState/PlayState/Model/Hand/Entities.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Room/Connected/GameState/PlayState/Model/Hand/Entities.elm -------------------------------------------------------------------------------- /client/elm/Room/Connected/GameState/PlayState/Model/Hand/State.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Room/Connected/GameState/PlayState/Model/Hand/State.elm -------------------------------------------------------------------------------- /client/elm/Room/Connected/GameState/PlayState/Model/Hand/Types.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Room/Connected/GameState/PlayState/Model/Hand/Types.elm -------------------------------------------------------------------------------- /client/elm/Room/Connected/GameState/PlayState/Model/Hand/View.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Room/Connected/GameState/PlayState/Model/Hand/View.elm -------------------------------------------------------------------------------- /client/elm/Room/Connected/GameState/PlayState/Model/Holding/State.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Room/Connected/GameState/PlayState/Model/Holding/State.elm -------------------------------------------------------------------------------- /client/elm/Room/Connected/GameState/PlayState/Model/Holding/Types.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Room/Connected/GameState/PlayState/Model/Holding/Types.elm -------------------------------------------------------------------------------- /client/elm/Room/Connected/GameState/PlayState/Model/Holding/View.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Room/Connected/GameState/PlayState/Model/Holding/View.elm -------------------------------------------------------------------------------- /client/elm/Room/Connected/GameState/PlayState/Model/Hover.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Room/Connected/GameState/PlayState/Model/Hover.elm -------------------------------------------------------------------------------- /client/elm/Room/Connected/GameState/PlayState/Model/Stack/Decoders.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Room/Connected/GameState/PlayState/Model/Stack/Decoders.elm -------------------------------------------------------------------------------- /client/elm/Room/Connected/GameState/PlayState/Model/Stack/Entities.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Room/Connected/GameState/PlayState/Model/Stack/Entities.elm -------------------------------------------------------------------------------- /client/elm/Room/Connected/GameState/PlayState/Model/Stack/State.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Room/Connected/GameState/PlayState/Model/Stack/State.elm -------------------------------------------------------------------------------- /client/elm/Room/Connected/GameState/PlayState/Model/Stack/Types.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Room/Connected/GameState/PlayState/Model/Stack/Types.elm -------------------------------------------------------------------------------- /client/elm/Room/Connected/GameState/PlayState/Model/Stack/View.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Room/Connected/GameState/PlayState/Model/Stack/View.elm -------------------------------------------------------------------------------- /client/elm/Room/Connected/GameState/PlayState/Model/State.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Room/Connected/GameState/PlayState/Model/State.elm -------------------------------------------------------------------------------- /client/elm/Room/Connected/GameState/PlayState/Model/Status/Decoders.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Room/Connected/GameState/PlayState/Model/Status/Decoders.elm -------------------------------------------------------------------------------- /client/elm/Room/Connected/GameState/PlayState/Model/Status/State.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Room/Connected/GameState/PlayState/Model/Status/State.elm -------------------------------------------------------------------------------- /client/elm/Room/Connected/GameState/PlayState/Model/Status/Types.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Room/Connected/GameState/PlayState/Model/Status/Types.elm -------------------------------------------------------------------------------- /client/elm/Room/Connected/GameState/PlayState/Model/Types.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Room/Connected/GameState/PlayState/Model/Types.elm -------------------------------------------------------------------------------- /client/elm/Room/Connected/GameState/PlayState/Model/View.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Room/Connected/GameState/PlayState/Model/View.elm -------------------------------------------------------------------------------- /client/elm/Room/Connected/GameState/PlayState/Model/Wave.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Room/Connected/GameState/PlayState/Model/Wave.elm -------------------------------------------------------------------------------- /client/elm/Room/Connected/GameState/PlayState/Model/Wheel/Decoders.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Room/Connected/GameState/PlayState/Model/Wheel/Decoders.elm -------------------------------------------------------------------------------- /client/elm/Room/Connected/GameState/PlayState/Model/Wheel/State.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Room/Connected/GameState/PlayState/Model/Wheel/State.elm -------------------------------------------------------------------------------- /client/elm/Room/Connected/GameState/PlayState/Model/Wheel/Types.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Room/Connected/GameState/PlayState/Model/Wheel/Types.elm -------------------------------------------------------------------------------- /client/elm/Room/Connected/GameState/PlayState/Model/WhichPlayer/Decoders.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Room/Connected/GameState/PlayState/Model/WhichPlayer/Decoders.elm -------------------------------------------------------------------------------- /client/elm/Room/Connected/GameState/PlayState/Model/WhichPlayer/State.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Room/Connected/GameState/PlayState/Model/WhichPlayer/State.elm -------------------------------------------------------------------------------- /client/elm/Room/Connected/GameState/PlayState/Model/WhichPlayer/Types.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Room/Connected/GameState/PlayState/Model/WhichPlayer/Types.elm -------------------------------------------------------------------------------- /client/elm/Room/Connected/GameState/PlayState/Resolvable/Decoders.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Room/Connected/GameState/PlayState/Resolvable/Decoders.elm -------------------------------------------------------------------------------- /client/elm/Room/Connected/GameState/PlayState/Resolvable/State.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Room/Connected/GameState/PlayState/Resolvable/State.elm -------------------------------------------------------------------------------- /client/elm/Room/Connected/GameState/PlayState/Resolvable/Types.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Room/Connected/GameState/PlayState/Resolvable/Types.elm -------------------------------------------------------------------------------- /client/elm/Room/Connected/GameState/PlayState/State.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Room/Connected/GameState/PlayState/State.elm -------------------------------------------------------------------------------- /client/elm/Room/Connected/GameState/PlayState/Types.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Room/Connected/GameState/PlayState/Types.elm -------------------------------------------------------------------------------- /client/elm/Room/Connected/GameState/PlayState/View.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Room/Connected/GameState/PlayState/View.elm -------------------------------------------------------------------------------- /client/elm/Room/Connected/GameState/State.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Room/Connected/GameState/State.elm -------------------------------------------------------------------------------- /client/elm/Room/Connected/GameState/Types.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Room/Connected/GameState/Types.elm -------------------------------------------------------------------------------- /client/elm/Room/Connected/GameState/Vfx/State.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Room/Connected/GameState/Vfx/State.elm -------------------------------------------------------------------------------- /client/elm/Room/Connected/GameState/Vfx/Types.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Room/Connected/GameState/Vfx/Types.elm -------------------------------------------------------------------------------- /client/elm/Room/Connected/GameState/View.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Room/Connected/GameState/View.elm -------------------------------------------------------------------------------- /client/elm/Room/Connected/GameState/Waiting/Decoders.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Room/Connected/GameState/Waiting/Decoders.elm -------------------------------------------------------------------------------- /client/elm/Room/Connected/GameState/Waiting/State.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Room/Connected/GameState/Waiting/State.elm -------------------------------------------------------------------------------- /client/elm/Room/Connected/GameState/Waiting/Types.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Room/Connected/GameState/Waiting/Types.elm -------------------------------------------------------------------------------- /client/elm/Room/Connected/GameState/Waiting/View.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Room/Connected/GameState/Waiting/View.elm -------------------------------------------------------------------------------- /client/elm/Room/Connected/Messages.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Room/Connected/Messages.elm -------------------------------------------------------------------------------- /client/elm/Room/Connected/Players.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Room/Connected/Players.elm -------------------------------------------------------------------------------- /client/elm/Room/Connected/State.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Room/Connected/State.elm -------------------------------------------------------------------------------- /client/elm/Room/Connected/Tutorial.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Room/Connected/Tutorial.elm -------------------------------------------------------------------------------- /client/elm/Room/Connected/Types.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Room/Connected/Types.elm -------------------------------------------------------------------------------- /client/elm/Room/Connected/View.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Room/Connected/View.elm -------------------------------------------------------------------------------- /client/elm/Room/Create/Messages.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Room/Create/Messages.elm -------------------------------------------------------------------------------- /client/elm/Room/Create/State.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Room/Create/State.elm -------------------------------------------------------------------------------- /client/elm/Room/Create/Types.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Room/Create/Types.elm -------------------------------------------------------------------------------- /client/elm/Room/Create/View.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Room/Create/View.elm -------------------------------------------------------------------------------- /client/elm/Room/Entrypoint/Decoders.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Room/Entrypoint/Decoders.elm -------------------------------------------------------------------------------- /client/elm/Room/Entrypoint/Messages.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Room/Entrypoint/Messages.elm -------------------------------------------------------------------------------- /client/elm/Room/Entrypoint/State.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Room/Entrypoint/State.elm -------------------------------------------------------------------------------- /client/elm/Room/Entrypoint/Types.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Room/Entrypoint/Types.elm -------------------------------------------------------------------------------- /client/elm/Room/Entrypoint/View.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Room/Entrypoint/View.elm -------------------------------------------------------------------------------- /client/elm/Room/Feedback/Decoders.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Room/Feedback/Decoders.elm -------------------------------------------------------------------------------- /client/elm/Room/Feedback/Messages.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Room/Feedback/Messages.elm -------------------------------------------------------------------------------- /client/elm/Room/Feedback/State.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Room/Feedback/State.elm -------------------------------------------------------------------------------- /client/elm/Room/Feedback/Types.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Room/Feedback/Types.elm -------------------------------------------------------------------------------- /client/elm/Room/Feedback/View.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Room/Feedback/View.elm -------------------------------------------------------------------------------- /client/elm/Room/GameType.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Room/GameType.elm -------------------------------------------------------------------------------- /client/elm/Room/Generators.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Room/Generators.elm -------------------------------------------------------------------------------- /client/elm/Room/Leaderboard/Decoders.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Room/Leaderboard/Decoders.elm -------------------------------------------------------------------------------- /client/elm/Room/Leaderboard/Messages.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Room/Leaderboard/Messages.elm -------------------------------------------------------------------------------- /client/elm/Room/Leaderboard/State.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Room/Leaderboard/State.elm -------------------------------------------------------------------------------- /client/elm/Room/Leaderboard/Types.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Room/Leaderboard/Types.elm -------------------------------------------------------------------------------- /client/elm/Room/Leaderboard/View.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Room/Leaderboard/View.elm -------------------------------------------------------------------------------- /client/elm/Room/League/Decoders.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Room/League/Decoders.elm -------------------------------------------------------------------------------- /client/elm/Room/League/Messages.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Room/League/Messages.elm -------------------------------------------------------------------------------- /client/elm/Room/League/State.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Room/League/State.elm -------------------------------------------------------------------------------- /client/elm/Room/League/Types.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Room/League/Types.elm -------------------------------------------------------------------------------- /client/elm/Room/League/View.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Room/League/View.elm -------------------------------------------------------------------------------- /client/elm/Room/Lobby/Messages.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Room/Lobby/Messages.elm -------------------------------------------------------------------------------- /client/elm/Room/Lobby/State.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Room/Lobby/State.elm -------------------------------------------------------------------------------- /client/elm/Room/Lobby/Types.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Room/Lobby/Types.elm -------------------------------------------------------------------------------- /client/elm/Room/Lobby/View.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Room/Lobby/View.elm -------------------------------------------------------------------------------- /client/elm/Room/Login/Decoders.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Room/Login/Decoders.elm -------------------------------------------------------------------------------- /client/elm/Room/Login/Messages.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Room/Login/Messages.elm -------------------------------------------------------------------------------- /client/elm/Room/Login/State.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Room/Login/State.elm -------------------------------------------------------------------------------- /client/elm/Room/Login/Types.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Room/Login/Types.elm -------------------------------------------------------------------------------- /client/elm/Room/Login/View.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Room/Login/View.elm -------------------------------------------------------------------------------- /client/elm/Room/Messages.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Room/Messages.elm -------------------------------------------------------------------------------- /client/elm/Room/Profile/Decoders.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Room/Profile/Decoders.elm -------------------------------------------------------------------------------- /client/elm/Room/Profile/Messages.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Room/Profile/Messages.elm -------------------------------------------------------------------------------- /client/elm/Room/Profile/State.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Room/Profile/State.elm -------------------------------------------------------------------------------- /client/elm/Room/Profile/Types.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Room/Profile/Types.elm -------------------------------------------------------------------------------- /client/elm/Room/Profile/View.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Room/Profile/View.elm -------------------------------------------------------------------------------- /client/elm/Room/Replay/Decoders.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Room/Replay/Decoders.elm -------------------------------------------------------------------------------- /client/elm/Room/Replay/Messages.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Room/Replay/Messages.elm -------------------------------------------------------------------------------- /client/elm/Room/Replay/State.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Room/Replay/State.elm -------------------------------------------------------------------------------- /client/elm/Room/Replay/Types.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Room/Replay/Types.elm -------------------------------------------------------------------------------- /client/elm/Room/Replay/View.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Room/Replay/View.elm -------------------------------------------------------------------------------- /client/elm/Room/Signup/Decoders.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Room/Signup/Decoders.elm -------------------------------------------------------------------------------- /client/elm/Room/Signup/Messages.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Room/Signup/Messages.elm -------------------------------------------------------------------------------- /client/elm/Room/Signup/State.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Room/Signup/State.elm -------------------------------------------------------------------------------- /client/elm/Room/Signup/Types.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Room/Signup/Types.elm -------------------------------------------------------------------------------- /client/elm/Room/Signup/View.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Room/Signup/View.elm -------------------------------------------------------------------------------- /client/elm/Room/State.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Room/State.elm -------------------------------------------------------------------------------- /client/elm/Room/Types.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Room/Types.elm -------------------------------------------------------------------------------- /client/elm/Room/View.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Room/View.elm -------------------------------------------------------------------------------- /client/elm/Routing/State.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Routing/State.elm -------------------------------------------------------------------------------- /client/elm/Routing/Types.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Routing/Types.elm -------------------------------------------------------------------------------- /client/elm/Settings/Messages.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Settings/Messages.elm -------------------------------------------------------------------------------- /client/elm/Settings/State.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Settings/State.elm -------------------------------------------------------------------------------- /client/elm/Settings/Types.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Settings/Types.elm -------------------------------------------------------------------------------- /client/elm/Settings/View.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Settings/View.elm -------------------------------------------------------------------------------- /client/elm/Stats.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Stats.elm -------------------------------------------------------------------------------- /client/elm/TimeLimit.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/TimeLimit.elm -------------------------------------------------------------------------------- /client/elm/Unproject.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Unproject.elm -------------------------------------------------------------------------------- /client/elm/Util.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/elm/Util.elm -------------------------------------------------------------------------------- /client/gulpfile.babel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/gulpfile.babel.js -------------------------------------------------------------------------------- /client/html/game.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/html/game.hbs -------------------------------------------------------------------------------- /client/html/index.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/html/index.hbs -------------------------------------------------------------------------------- /client/html/partials/favicons.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/html/partials/favicons.hbs -------------------------------------------------------------------------------- /client/html/partials/ga.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/html/partials/ga.hbs -------------------------------------------------------------------------------- /client/html/partials/socials.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/html/partials/socials.hbs -------------------------------------------------------------------------------- /client/js/start.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/js/start.js -------------------------------------------------------------------------------- /client/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/nginx.conf -------------------------------------------------------------------------------- /client/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/package-lock.json -------------------------------------------------------------------------------- /client/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/package.json -------------------------------------------------------------------------------- /client/sass/_buttons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/sass/_buttons.scss -------------------------------------------------------------------------------- /client/sass/_canvas.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/sass/_canvas.scss -------------------------------------------------------------------------------- /client/sass/_chat.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/sass/_chat.scss -------------------------------------------------------------------------------- /client/sass/_connecting.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/sass/_connecting.scss -------------------------------------------------------------------------------- /client/sass/_connection-lost.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/sass/_connection-lost.scss -------------------------------------------------------------------------------- /client/sass/_create.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/sass/_create.scss -------------------------------------------------------------------------------- /client/sass/_feedback.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/sass/_feedback.scss -------------------------------------------------------------------------------- /client/sass/_form.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/sass/_form.scss -------------------------------------------------------------------------------- /client/sass/_input-group.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/sass/_input-group.scss -------------------------------------------------------------------------------- /client/sass/_leaderboard.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/sass/_leaderboard.scss -------------------------------------------------------------------------------- /client/sass/_league.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/sass/_league.scss -------------------------------------------------------------------------------- /client/sass/_login.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/sass/_login.scss -------------------------------------------------------------------------------- /client/sass/_names.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/sass/_names.scss -------------------------------------------------------------------------------- /client/sass/_notifications.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/sass/_notifications.scss -------------------------------------------------------------------------------- /client/sass/_presence.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/sass/_presence.scss -------------------------------------------------------------------------------- /client/sass/_profile.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/sass/_profile.scss -------------------------------------------------------------------------------- /client/sass/_replay.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/sass/_replay.scss -------------------------------------------------------------------------------- /client/sass/_settings.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/sass/_settings.scss -------------------------------------------------------------------------------- /client/sass/_signup.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/sass/_signup.scss -------------------------------------------------------------------------------- /client/sass/_theme.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/sass/_theme.scss -------------------------------------------------------------------------------- /client/sass/_waiting.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/sass/_waiting.scss -------------------------------------------------------------------------------- /client/sass/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/sass/main.scss -------------------------------------------------------------------------------- /client/ssl/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/ssl/www.galgagame.com.ca-bundle.secret: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/ssl/www.galgagame.com.ca-bundle.secret -------------------------------------------------------------------------------- /client/ssl/www.galgagame.com.key.secret: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/ssl/www.galgagame.com.key.secret -------------------------------------------------------------------------------- /client/ssl/www.ringofworlds.com.ca-bundle.secret: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/ssl/www.ringofworlds.com.ca-bundle.secret -------------------------------------------------------------------------------- /client/ssl/www.ringofworlds.com.key.secret: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/ssl/www.ringofworlds.com.key.secret -------------------------------------------------------------------------------- /client/static/dev/favicons/android-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/static/dev/favicons/android-icon-144x144.png -------------------------------------------------------------------------------- /client/static/dev/favicons/android-icon-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/static/dev/favicons/android-icon-192x192.png -------------------------------------------------------------------------------- /client/static/dev/favicons/android-icon-36x36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/static/dev/favicons/android-icon-36x36.png -------------------------------------------------------------------------------- /client/static/dev/favicons/android-icon-48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/static/dev/favicons/android-icon-48x48.png -------------------------------------------------------------------------------- /client/static/dev/favicons/android-icon-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/static/dev/favicons/android-icon-72x72.png -------------------------------------------------------------------------------- /client/static/dev/favicons/android-icon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/static/dev/favicons/android-icon-96x96.png -------------------------------------------------------------------------------- /client/static/dev/favicons/apple-icon-114x114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/static/dev/favicons/apple-icon-114x114.png -------------------------------------------------------------------------------- /client/static/dev/favicons/apple-icon-120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/static/dev/favicons/apple-icon-120x120.png -------------------------------------------------------------------------------- /client/static/dev/favicons/apple-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/static/dev/favicons/apple-icon-144x144.png -------------------------------------------------------------------------------- /client/static/dev/favicons/apple-icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/static/dev/favicons/apple-icon-152x152.png -------------------------------------------------------------------------------- /client/static/dev/favicons/apple-icon-180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/static/dev/favicons/apple-icon-180x180.png -------------------------------------------------------------------------------- /client/static/dev/favicons/apple-icon-57x57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/static/dev/favicons/apple-icon-57x57.png -------------------------------------------------------------------------------- /client/static/dev/favicons/apple-icon-60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/static/dev/favicons/apple-icon-60x60.png -------------------------------------------------------------------------------- /client/static/dev/favicons/apple-icon-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/static/dev/favicons/apple-icon-72x72.png -------------------------------------------------------------------------------- /client/static/dev/favicons/apple-icon-76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/static/dev/favicons/apple-icon-76x76.png -------------------------------------------------------------------------------- /client/static/dev/favicons/apple-icon-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/static/dev/favicons/apple-icon-precomposed.png -------------------------------------------------------------------------------- /client/static/dev/favicons/apple-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/static/dev/favicons/apple-icon.png -------------------------------------------------------------------------------- /client/static/dev/favicons/browserconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/static/dev/favicons/browserconfig.xml -------------------------------------------------------------------------------- /client/static/dev/favicons/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/static/dev/favicons/favicon-16x16.png -------------------------------------------------------------------------------- /client/static/dev/favicons/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/static/dev/favicons/favicon-32x32.png -------------------------------------------------------------------------------- /client/static/dev/favicons/favicon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/static/dev/favicons/favicon-96x96.png -------------------------------------------------------------------------------- /client/static/dev/favicons/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/static/dev/favicons/favicon.ico -------------------------------------------------------------------------------- /client/static/dev/favicons/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/static/dev/favicons/manifest.json -------------------------------------------------------------------------------- /client/static/dev/favicons/ms-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/static/dev/favicons/ms-icon-144x144.png -------------------------------------------------------------------------------- /client/static/dev/favicons/ms-icon-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/static/dev/favicons/ms-icon-150x150.png -------------------------------------------------------------------------------- /client/static/dev/favicons/ms-icon-310x310.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/static/dev/favicons/ms-icon-310x310.png -------------------------------------------------------------------------------- /client/static/dev/favicons/ms-icon-70x70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/static/dev/favicons/ms-icon-70x70.png -------------------------------------------------------------------------------- /client/static/dev/fonts/futura/fontmap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/static/dev/fonts/futura/fontmap.json -------------------------------------------------------------------------------- /client/static/dev/fonts/futura/fontmap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/static/dev/fonts/futura/fontmap.png -------------------------------------------------------------------------------- /client/static/dev/fonts/icons/fontmap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/static/dev/fonts/icons/fontmap.json -------------------------------------------------------------------------------- /client/static/dev/fonts/icons/fontmap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/static/dev/fonts/icons/fontmap.png -------------------------------------------------------------------------------- /client/static/dev/img/icon/close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/static/dev/img/icon/close.svg -------------------------------------------------------------------------------- /client/static/dev/img/icon/hamburger.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/static/dev/img/icon/hamburger.svg -------------------------------------------------------------------------------- /client/static/dev/img/icon/settings.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/static/dev/img/icon/settings.svg -------------------------------------------------------------------------------- /client/static/dev/img/landing/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/static/dev/img/landing/hero.png -------------------------------------------------------------------------------- /client/static/dev/img/landing/screenshot-char-select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/static/dev/img/landing/screenshot-char-select.png -------------------------------------------------------------------------------- /client/static/dev/img/landing/screenshot-gameplay-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/static/dev/img/landing/screenshot-gameplay-2.png -------------------------------------------------------------------------------- /client/static/dev/img/landing/screenshot-gameplay-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/static/dev/img/landing/screenshot-gameplay-3.png -------------------------------------------------------------------------------- /client/static/dev/img/landing/screenshot-gameplay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/static/dev/img/landing/screenshot-gameplay.png -------------------------------------------------------------------------------- /client/static/dev/img/textures/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/static/dev/img/textures/arrow.png -------------------------------------------------------------------------------- /client/static/dev/img/textures/blighted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/static/dev/img/textures/blighted.png -------------------------------------------------------------------------------- /client/static/dev/img/textures/bonusDamage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/static/dev/img/textures/bonusDamage.png -------------------------------------------------------------------------------- /client/static/dev/img/textures/cardBack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/static/dev/img/textures/cardBack.png -------------------------------------------------------------------------------- /client/static/dev/img/textures/cardBackOutline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/static/dev/img/textures/cardBackOutline.png -------------------------------------------------------------------------------- /client/static/dev/img/textures/cardOutline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/static/dev/img/textures/cardOutline.png -------------------------------------------------------------------------------- /client/static/dev/img/textures/cards/angel/coin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/static/dev/img/textures/cards/angel/coin.png -------------------------------------------------------------------------------- /client/static/dev/img/textures/cards/angel/cup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/static/dev/img/textures/cards/angel/cup.png -------------------------------------------------------------------------------- /client/static/dev/img/textures/cards/angel/sword.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/static/dev/img/textures/cards/angel/sword.png -------------------------------------------------------------------------------- /client/static/dev/img/textures/cards/angel/wand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/static/dev/img/textures/cards/angel/wand.png -------------------------------------------------------------------------------- /client/static/dev/img/textures/cards/blood/coin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/static/dev/img/textures/cards/blood/coin.png -------------------------------------------------------------------------------- /client/static/dev/img/textures/cards/blood/cup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/static/dev/img/textures/cards/blood/cup.png -------------------------------------------------------------------------------- /client/static/dev/img/textures/cards/blood/sword.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/static/dev/img/textures/cards/blood/sword.png -------------------------------------------------------------------------------- /client/static/dev/img/textures/cards/blood/wand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/static/dev/img/textures/cards/blood/wand.png -------------------------------------------------------------------------------- /client/static/dev/img/textures/cards/clay/coin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/static/dev/img/textures/cards/clay/coin.png -------------------------------------------------------------------------------- /client/static/dev/img/textures/cards/clay/cup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/static/dev/img/textures/cards/clay/cup.png -------------------------------------------------------------------------------- /client/static/dev/img/textures/cards/clay/sword.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/static/dev/img/textures/cards/clay/sword.png -------------------------------------------------------------------------------- /client/static/dev/img/textures/cards/clay/wand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/static/dev/img/textures/cards/clay/wand.png -------------------------------------------------------------------------------- /client/static/dev/img/textures/cards/dark/coin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/static/dev/img/textures/cards/dark/coin.png -------------------------------------------------------------------------------- /client/static/dev/img/textures/cards/dark/cup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/static/dev/img/textures/cards/dark/cup.png -------------------------------------------------------------------------------- /client/static/dev/img/textures/cards/dark/sword.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/static/dev/img/textures/cards/dark/sword.png -------------------------------------------------------------------------------- /client/static/dev/img/textures/cards/dark/wand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/static/dev/img/textures/cards/dark/wand.png -------------------------------------------------------------------------------- /client/static/dev/img/textures/cards/devil/coin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/static/dev/img/textures/cards/devil/coin.png -------------------------------------------------------------------------------- /client/static/dev/img/textures/cards/devil/cup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/static/dev/img/textures/cards/devil/cup.png -------------------------------------------------------------------------------- /client/static/dev/img/textures/cards/devil/sword.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/static/dev/img/textures/cards/devil/sword.png -------------------------------------------------------------------------------- /client/static/dev/img/textures/cards/devil/wand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/static/dev/img/textures/cards/devil/wand.png -------------------------------------------------------------------------------- /client/static/dev/img/textures/cards/duality/coin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/static/dev/img/textures/cards/duality/coin.png -------------------------------------------------------------------------------- /client/static/dev/img/textures/cards/duality/cup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/static/dev/img/textures/cards/duality/cup.png -------------------------------------------------------------------------------- /client/static/dev/img/textures/cards/duality/sword.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/static/dev/img/textures/cards/duality/sword.png -------------------------------------------------------------------------------- /client/static/dev/img/textures/cards/duality/wand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/static/dev/img/textures/cards/duality/wand.png -------------------------------------------------------------------------------- /client/static/dev/img/textures/cards/eye/coin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/static/dev/img/textures/cards/eye/coin.png -------------------------------------------------------------------------------- /client/static/dev/img/textures/cards/eye/cup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/static/dev/img/textures/cards/eye/cup.png -------------------------------------------------------------------------------- /client/static/dev/img/textures/cards/eye/sword.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/static/dev/img/textures/cards/eye/sword.png -------------------------------------------------------------------------------- /client/static/dev/img/textures/cards/eye/wand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/static/dev/img/textures/cards/eye/wand.png -------------------------------------------------------------------------------- /client/static/dev/img/textures/cards/fever/coin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/static/dev/img/textures/cards/fever/coin.png -------------------------------------------------------------------------------- /client/static/dev/img/textures/cards/fever/cup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/static/dev/img/textures/cards/fever/cup.png -------------------------------------------------------------------------------- /client/static/dev/img/textures/cards/fever/sword.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/static/dev/img/textures/cards/fever/sword.png -------------------------------------------------------------------------------- /client/static/dev/img/textures/cards/fever/wand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/static/dev/img/textures/cards/fever/wand.png -------------------------------------------------------------------------------- /client/static/dev/img/textures/cards/fire/coin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/static/dev/img/textures/cards/fire/coin.png -------------------------------------------------------------------------------- /client/static/dev/img/textures/cards/fire/cup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/static/dev/img/textures/cards/fire/cup.png -------------------------------------------------------------------------------- /client/static/dev/img/textures/cards/fire/sword.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/static/dev/img/textures/cards/fire/sword.png -------------------------------------------------------------------------------- /client/static/dev/img/textures/cards/fire/wand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/static/dev/img/textures/cards/fire/wand.png -------------------------------------------------------------------------------- /client/static/dev/img/textures/cards/gift/coin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/static/dev/img/textures/cards/gift/coin.png -------------------------------------------------------------------------------- /client/static/dev/img/textures/cards/gift/cup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/static/dev/img/textures/cards/gift/cup.png -------------------------------------------------------------------------------- /client/static/dev/img/textures/cards/gift/sword.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/static/dev/img/textures/cards/gift/sword.png -------------------------------------------------------------------------------- /client/static/dev/img/textures/cards/gift/wand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/static/dev/img/textures/cards/gift/wand.png -------------------------------------------------------------------------------- /client/static/dev/img/textures/cards/glass/coin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/static/dev/img/textures/cards/glass/coin.png -------------------------------------------------------------------------------- /client/static/dev/img/textures/cards/glass/cup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/static/dev/img/textures/cards/glass/cup.png -------------------------------------------------------------------------------- /client/static/dev/img/textures/cards/glass/sword.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/static/dev/img/textures/cards/glass/sword.png -------------------------------------------------------------------------------- /client/static/dev/img/textures/cards/glass/wand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/static/dev/img/textures/cards/glass/wand.png -------------------------------------------------------------------------------- /client/static/dev/img/textures/cards/gold/coin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/static/dev/img/textures/cards/gold/coin.png -------------------------------------------------------------------------------- /client/static/dev/img/textures/cards/gold/cup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/static/dev/img/textures/cards/gold/cup.png -------------------------------------------------------------------------------- /client/static/dev/img/textures/cards/gold/sword.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/static/dev/img/textures/cards/gold/sword.png -------------------------------------------------------------------------------- /client/static/dev/img/textures/cards/gold/wand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/static/dev/img/textures/cards/gold/wand.png -------------------------------------------------------------------------------- /client/static/dev/img/textures/cards/mercy/coin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/static/dev/img/textures/cards/mercy/coin.png -------------------------------------------------------------------------------- /client/static/dev/img/textures/cards/mercy/cup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/static/dev/img/textures/cards/mercy/cup.png -------------------------------------------------------------------------------- /client/static/dev/img/textures/cards/mercy/sword.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/static/dev/img/textures/cards/mercy/sword.png -------------------------------------------------------------------------------- /client/static/dev/img/textures/cards/mercy/wand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/static/dev/img/textures/cards/mercy/wand.png -------------------------------------------------------------------------------- /client/static/dev/img/textures/cards/mirror/coin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/static/dev/img/textures/cards/mirror/coin.png -------------------------------------------------------------------------------- /client/static/dev/img/textures/cards/mirror/cup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/static/dev/img/textures/cards/mirror/cup.png -------------------------------------------------------------------------------- /client/static/dev/img/textures/cards/mirror/sword.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/static/dev/img/textures/cards/mirror/sword.png -------------------------------------------------------------------------------- /client/static/dev/img/textures/cards/mirror/wand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/static/dev/img/textures/cards/mirror/wand.png -------------------------------------------------------------------------------- /client/static/dev/img/textures/cards/plastic/coin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/static/dev/img/textures/cards/plastic/coin.png -------------------------------------------------------------------------------- /client/static/dev/img/textures/cards/plastic/cup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/static/dev/img/textures/cards/plastic/cup.png -------------------------------------------------------------------------------- /client/static/dev/img/textures/cards/plastic/sword.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/static/dev/img/textures/cards/plastic/sword.png -------------------------------------------------------------------------------- /client/static/dev/img/textures/cards/plastic/wand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/static/dev/img/textures/cards/plastic/wand.png -------------------------------------------------------------------------------- /client/static/dev/img/textures/cards/shroom/coin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/static/dev/img/textures/cards/shroom/coin.png -------------------------------------------------------------------------------- /client/static/dev/img/textures/cards/shroom/cup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/static/dev/img/textures/cards/shroom/cup.png -------------------------------------------------------------------------------- /client/static/dev/img/textures/cards/shroom/sword.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/static/dev/img/textures/cards/shroom/sword.png -------------------------------------------------------------------------------- /client/static/dev/img/textures/cards/shroom/wand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/static/dev/img/textures/cards/shroom/wand.png -------------------------------------------------------------------------------- /client/static/dev/img/textures/cards/strange/shroud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/static/dev/img/textures/cards/strange/shroud.png -------------------------------------------------------------------------------- /client/static/dev/img/textures/cards/strange/sleep.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/static/dev/img/textures/cards/strange/sleep.png -------------------------------------------------------------------------------- /client/static/dev/img/textures/cards/strange/snag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/static/dev/img/textures/cards/strange/snag.png -------------------------------------------------------------------------------- /client/static/dev/img/textures/cards/strange/sphere.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/static/dev/img/textures/cards/strange/sphere.png -------------------------------------------------------------------------------- /client/static/dev/img/textures/cards/strange/spore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/static/dev/img/textures/cards/strange/spore.png -------------------------------------------------------------------------------- /client/static/dev/img/textures/cards/strange/start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/static/dev/img/textures/cards/strange/start.png -------------------------------------------------------------------------------- /client/static/dev/img/textures/cards/strange/stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/static/dev/img/textures/cards/strange/stop.png -------------------------------------------------------------------------------- /client/static/dev/img/textures/cards/trick/coin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/static/dev/img/textures/cards/trick/coin.png -------------------------------------------------------------------------------- /client/static/dev/img/textures/cards/trick/cup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/static/dev/img/textures/cards/trick/cup.png -------------------------------------------------------------------------------- /client/static/dev/img/textures/cards/trick/sword.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/static/dev/img/textures/cards/trick/sword.png -------------------------------------------------------------------------------- /client/static/dev/img/textures/cards/trick/wand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/static/dev/img/textures/cards/trick/wand.png -------------------------------------------------------------------------------- /client/static/dev/img/textures/cards/void/coin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/static/dev/img/textures/cards/void/coin.png -------------------------------------------------------------------------------- /client/static/dev/img/textures/cards/void/cup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/static/dev/img/textures/cards/void/cup.png -------------------------------------------------------------------------------- /client/static/dev/img/textures/cards/void/sword.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/static/dev/img/textures/cards/void/sword.png -------------------------------------------------------------------------------- /client/static/dev/img/textures/cards/void/wand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/static/dev/img/textures/cards/void/wand.png -------------------------------------------------------------------------------- /client/static/dev/img/textures/cards/water/coin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/static/dev/img/textures/cards/water/coin.png -------------------------------------------------------------------------------- /client/static/dev/img/textures/cards/water/cup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/static/dev/img/textures/cards/water/cup.png -------------------------------------------------------------------------------- /client/static/dev/img/textures/cards/water/sword.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/static/dev/img/textures/cards/water/sword.png -------------------------------------------------------------------------------- /client/static/dev/img/textures/cards/water/wand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/static/dev/img/textures/cards/water/wand.png -------------------------------------------------------------------------------- /client/static/dev/img/textures/fragile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/static/dev/img/textures/fragile.png -------------------------------------------------------------------------------- /client/static/dev/img/textures/invisible.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/static/dev/img/textures/invisible.png -------------------------------------------------------------------------------- /client/static/dev/img/textures/laser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/static/dev/img/textures/laser.png -------------------------------------------------------------------------------- /client/static/dev/img/textures/multiply.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/static/dev/img/textures/multiply.png -------------------------------------------------------------------------------- /client/static/dev/img/textures/next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/static/dev/img/textures/next.png -------------------------------------------------------------------------------- /client/static/dev/img/textures/noise.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/static/dev/img/textures/noise.png -------------------------------------------------------------------------------- /client/static/dev/img/textures/nonlethal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/static/dev/img/textures/nonlethal.png -------------------------------------------------------------------------------- /client/static/dev/img/textures/radial.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/static/dev/img/textures/radial.png -------------------------------------------------------------------------------- /client/static/dev/img/textures/revealed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/static/dev/img/textures/revealed.png -------------------------------------------------------------------------------- /client/static/dev/music/background.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/static/dev/music/background.mp3 -------------------------------------------------------------------------------- /client/static/dev/sfx/bite.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/static/dev/sfx/bite.mp3 -------------------------------------------------------------------------------- /client/static/dev/sfx/bounce.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/static/dev/sfx/bounce.mp3 -------------------------------------------------------------------------------- /client/static/dev/sfx/burn.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/static/dev/sfx/burn.mp3 -------------------------------------------------------------------------------- /client/static/dev/sfx/click.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/static/dev/sfx/click.mp3 -------------------------------------------------------------------------------- /client/static/dev/sfx/coin.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/static/dev/sfx/coin.mp3 -------------------------------------------------------------------------------- /client/static/dev/sfx/curse.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/static/dev/sfx/curse.mp3 -------------------------------------------------------------------------------- /client/static/dev/sfx/damage.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/static/dev/sfx/damage.mp3 -------------------------------------------------------------------------------- /client/static/dev/sfx/defeat.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/static/dev/sfx/defeat.mp3 -------------------------------------------------------------------------------- /client/static/dev/sfx/dice.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/static/dev/sfx/dice.mp3 -------------------------------------------------------------------------------- /client/static/dev/sfx/draw.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/static/dev/sfx/draw.mp3 -------------------------------------------------------------------------------- /client/static/dev/sfx/evilTick.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/static/dev/sfx/evilTick.mp3 -------------------------------------------------------------------------------- /client/static/dev/sfx/heal.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/static/dev/sfx/heal.mp3 -------------------------------------------------------------------------------- /client/static/dev/sfx/hover.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/static/dev/sfx/hover.mp3 -------------------------------------------------------------------------------- /client/static/dev/sfx/moveStack.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/static/dev/sfx/moveStack.mp3 -------------------------------------------------------------------------------- /client/static/dev/sfx/notify.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/static/dev/sfx/notify.mp3 -------------------------------------------------------------------------------- /client/static/dev/sfx/obliterate.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/static/dev/sfx/obliterate.mp3 -------------------------------------------------------------------------------- /client/static/dev/sfx/playCard.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/static/dev/sfx/playCard.mp3 -------------------------------------------------------------------------------- /client/static/dev/sfx/reveal.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/static/dev/sfx/reveal.mp3 -------------------------------------------------------------------------------- /client/static/dev/sfx/rotate.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/static/dev/sfx/rotate.mp3 -------------------------------------------------------------------------------- /client/static/dev/sfx/slash.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/static/dev/sfx/slash.mp3 -------------------------------------------------------------------------------- /client/static/dev/sfx/transmute.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/static/dev/sfx/transmute.mp3 -------------------------------------------------------------------------------- /client/static/dev/sfx/tricked.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/static/dev/sfx/tricked.mp3 -------------------------------------------------------------------------------- /client/static/dev/sfx/unlock.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/static/dev/sfx/unlock.mp3 -------------------------------------------------------------------------------- /client/static/dev/sfx/victory.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/static/dev/sfx/victory.mp3 -------------------------------------------------------------------------------- /client/static/dev/sfx/windup.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/static/dev/sfx/windup.mp3 -------------------------------------------------------------------------------- /client/static/dev/sfx/xp.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/client/static/dev/sfx/xp.mp3 -------------------------------------------------------------------------------- /database/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM postgres:11 2 | ADD init.sql /docker-entrypoint-initdb.d/ 3 | -------------------------------------------------------------------------------- /database/init.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/database/init.sql -------------------------------------------------------------------------------- /database/migrations/add_indexes.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/database/migrations/add_indexes.sql -------------------------------------------------------------------------------- /database/migrations/add_progress.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/database/migrations/add_progress.sql -------------------------------------------------------------------------------- /database/migrations/add_replay_display_usernames.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/database/migrations/add_replay_display_usernames.sql -------------------------------------------------------------------------------- /database/migrations/username_to_id.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/database/migrations/username_to_id.sql -------------------------------------------------------------------------------- /docker-compose.prod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/docker-compose.prod.yml -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /prod.env.secret: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/prod.env.secret -------------------------------------------------------------------------------- /redis/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM redis:alpine 2 | -------------------------------------------------------------------------------- /scripts/copyHooks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/scripts/copyHooks -------------------------------------------------------------------------------- /scripts/decryptSecrets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/scripts/decryptSecrets -------------------------------------------------------------------------------- /scripts/deploy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/scripts/deploy -------------------------------------------------------------------------------- /scripts/encryptSecrets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/scripts/encryptSecrets -------------------------------------------------------------------------------- /scripts/flip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/scripts/flip -------------------------------------------------------------------------------- /scripts/logs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/scripts/logs -------------------------------------------------------------------------------- /scripts/makeFakeCertificates: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/scripts/makeFakeCertificates -------------------------------------------------------------------------------- /scripts/newElmModule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/scripts/newElmModule -------------------------------------------------------------------------------- /scripts/purgeOtherDroplets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/scripts/purgeOtherDroplets -------------------------------------------------------------------------------- /scripts/sshDev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/scripts/sshDev -------------------------------------------------------------------------------- /scripts/systemMessage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/scripts/systemMessage -------------------------------------------------------------------------------- /scripts/verifySsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/scripts/verifySsl -------------------------------------------------------------------------------- /server/.dockerignore: -------------------------------------------------------------------------------- 1 | .stack-work 2 | -------------------------------------------------------------------------------- /server/.ghci: -------------------------------------------------------------------------------- 1 | :set prompt "λ " 2 | -------------------------------------------------------------------------------- /server/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/server/Dockerfile -------------------------------------------------------------------------------- /server/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/server/LICENSE -------------------------------------------------------------------------------- /server/Setup.hs: -------------------------------------------------------------------------------- 1 | import Distribution.Simple 2 | main = defaultMain 3 | -------------------------------------------------------------------------------- /server/app/Main.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/server/app/Main.hs -------------------------------------------------------------------------------- /server/galgagame.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/server/galgagame.cabal -------------------------------------------------------------------------------- /server/prod.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/server/prod.Dockerfile -------------------------------------------------------------------------------- /server/src/Act.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/server/src/Act.hs -------------------------------------------------------------------------------- /server/src/ArtificialIntelligence.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/server/src/ArtificialIntelligence.hs -------------------------------------------------------------------------------- /server/src/ArtificialIntelligence.hs-boot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/server/src/ArtificialIntelligence.hs-boot -------------------------------------------------------------------------------- /server/src/Auth/Apps.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/server/src/Auth/Apps.hs -------------------------------------------------------------------------------- /server/src/Auth/Schema.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/server/src/Auth/Schema.hs -------------------------------------------------------------------------------- /server/src/Auth/Views.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/server/src/Auth/Views.hs -------------------------------------------------------------------------------- /server/src/Bounce.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/server/src/Bounce.hs -------------------------------------------------------------------------------- /server/src/Browse/Apps.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/server/src/Browse/Apps.hs -------------------------------------------------------------------------------- /server/src/Browse/Views.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/server/src/Browse/Views.hs -------------------------------------------------------------------------------- /server/src/Card.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/server/src/Card.hs -------------------------------------------------------------------------------- /server/src/CardAnim.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/server/src/CardAnim.hs -------------------------------------------------------------------------------- /server/src/Cards.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/server/src/Cards.hs -------------------------------------------------------------------------------- /server/src/Cards.hs-boot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/server/src/Cards.hs-boot -------------------------------------------------------------------------------- /server/src/Client.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/server/src/Client.hs -------------------------------------------------------------------------------- /server/src/Command.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/server/src/Command.hs -------------------------------------------------------------------------------- /server/src/Config.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/server/src/Config.hs -------------------------------------------------------------------------------- /server/src/DSL/Alpha.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/server/src/DSL/Alpha.hs -------------------------------------------------------------------------------- /server/src/DSL/Alpha/Actions.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/server/src/DSL/Alpha/Actions.hs -------------------------------------------------------------------------------- /server/src/DSL/Alpha/DSL.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/server/src/DSL/Alpha/DSL.hs -------------------------------------------------------------------------------- /server/src/DSL/Alpha/DSL.hs-boot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/server/src/DSL/Alpha/DSL.hs-boot -------------------------------------------------------------------------------- /server/src/DSL/Alpha/Interpreters.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/server/src/DSL/Alpha/Interpreters.hs -------------------------------------------------------------------------------- /server/src/DSL/Anim.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/server/src/DSL/Anim.hs -------------------------------------------------------------------------------- /server/src/DSL/Anim/Actions.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/server/src/DSL/Anim/Actions.hs -------------------------------------------------------------------------------- /server/src/DSL/Anim/DSL.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/server/src/DSL/Anim/DSL.hs -------------------------------------------------------------------------------- /server/src/DSL/Anim/Interpreters.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/server/src/DSL/Anim/Interpreters.hs -------------------------------------------------------------------------------- /server/src/DSL/Beta.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/server/src/DSL/Beta.hs -------------------------------------------------------------------------------- /server/src/DSL/Beta/Actions.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/server/src/DSL/Beta/Actions.hs -------------------------------------------------------------------------------- /server/src/DSL/Beta/DSL.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/server/src/DSL/Beta/DSL.hs -------------------------------------------------------------------------------- /server/src/DSL/Beta/DSL.hs-boot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/server/src/DSL/Beta/DSL.hs-boot -------------------------------------------------------------------------------- /server/src/DSL/Beta/Interpreters.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/server/src/DSL/Beta/Interpreters.hs -------------------------------------------------------------------------------- /server/src/Database.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/server/src/Database.hs -------------------------------------------------------------------------------- /server/src/DeckBuilding.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/server/src/DeckBuilding.hs -------------------------------------------------------------------------------- /server/src/DeckBuilding.hs-boot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/server/src/DeckBuilding.hs-boot -------------------------------------------------------------------------------- /server/src/Discard.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/server/src/Discard.hs -------------------------------------------------------------------------------- /server/src/Ease.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/server/src/Ease.hs -------------------------------------------------------------------------------- /server/src/Encounter.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/server/src/Encounter.hs -------------------------------------------------------------------------------- /server/src/Feedback/Apps.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/server/src/Feedback/Apps.hs -------------------------------------------------------------------------------- /server/src/Feedback/Schema.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/server/src/Feedback/Schema.hs -------------------------------------------------------------------------------- /server/src/Feedback/Views.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/server/src/Feedback/Views.hs -------------------------------------------------------------------------------- /server/src/GameCommand.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/server/src/GameCommand.hs -------------------------------------------------------------------------------- /server/src/GameState.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/server/src/GameState.hs -------------------------------------------------------------------------------- /server/src/GodMode.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/server/src/GodMode.hs -------------------------------------------------------------------------------- /server/src/HandCard.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/server/src/HandCard.hs -------------------------------------------------------------------------------- /server/src/Leaderboard/Apps.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/server/src/Leaderboard/Apps.hs -------------------------------------------------------------------------------- /server/src/Leaderboard/Leaderboard.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/server/src/Leaderboard/Leaderboard.hs -------------------------------------------------------------------------------- /server/src/Leaderboard/Views.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/server/src/Leaderboard/Views.hs -------------------------------------------------------------------------------- /server/src/League/Apps.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/server/src/League/Apps.hs -------------------------------------------------------------------------------- /server/src/League/Schema.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/server/src/League/Schema.hs -------------------------------------------------------------------------------- /server/src/League/Views.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/server/src/League/Views.hs -------------------------------------------------------------------------------- /server/src/Life.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/server/src/Life.hs -------------------------------------------------------------------------------- /server/src/Log.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/server/src/Log.hs -------------------------------------------------------------------------------- /server/src/Metrics.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/server/src/Metrics.hs -------------------------------------------------------------------------------- /server/src/Mirror.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/server/src/Mirror.hs -------------------------------------------------------------------------------- /server/src/Model.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/server/src/Model.hs -------------------------------------------------------------------------------- /server/src/ModelDiff.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/server/src/ModelDiff.hs -------------------------------------------------------------------------------- /server/src/Negotiation.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/server/src/Negotiation.hs -------------------------------------------------------------------------------- /server/src/Outcome.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/server/src/Outcome.hs -------------------------------------------------------------------------------- /server/src/Player.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/server/src/Player.hs -------------------------------------------------------------------------------- /server/src/Presence/Apps.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/server/src/Presence/Apps.hs -------------------------------------------------------------------------------- /server/src/Presence/Presence.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/server/src/Presence/Presence.hs -------------------------------------------------------------------------------- /server/src/Presence/Views.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/server/src/Presence/Views.hs -------------------------------------------------------------------------------- /server/src/Profile/Apps.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/server/src/Profile/Apps.hs -------------------------------------------------------------------------------- /server/src/Profile/Views.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/server/src/Profile/Views.hs -------------------------------------------------------------------------------- /server/src/Quest.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/server/src/Quest.hs -------------------------------------------------------------------------------- /server/src/Replay/Active.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/server/src/Replay/Active.hs -------------------------------------------------------------------------------- /server/src/Replay/Apps.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/server/src/Replay/Apps.hs -------------------------------------------------------------------------------- /server/src/Replay/Final.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/server/src/Replay/Final.hs -------------------------------------------------------------------------------- /server/src/Replay/Schema.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/server/src/Replay/Schema.hs -------------------------------------------------------------------------------- /server/src/Replay/Views.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/server/src/Replay/Views.hs -------------------------------------------------------------------------------- /server/src/ResolveData.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/server/src/ResolveData.hs -------------------------------------------------------------------------------- /server/src/Room.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/server/src/Room.hs -------------------------------------------------------------------------------- /server/src/Scenario.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/server/src/Scenario.hs -------------------------------------------------------------------------------- /server/src/Schema.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/server/src/Schema.hs -------------------------------------------------------------------------------- /server/src/Server.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/server/src/Server.hs -------------------------------------------------------------------------------- /server/src/Stack.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/server/src/Stack.hs -------------------------------------------------------------------------------- /server/src/StackCard.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/server/src/StackCard.hs -------------------------------------------------------------------------------- /server/src/Start.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/server/src/Start.hs -------------------------------------------------------------------------------- /server/src/Stats/Experience.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/server/src/Stats/Experience.hs -------------------------------------------------------------------------------- /server/src/Stats/Progress.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/server/src/Stats/Progress.hs -------------------------------------------------------------------------------- /server/src/Stats/Schema.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/server/src/Stats/Schema.hs -------------------------------------------------------------------------------- /server/src/Stats/Stats.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/server/src/Stats/Stats.hs -------------------------------------------------------------------------------- /server/src/StatusEff.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/server/src/StatusEff.hs -------------------------------------------------------------------------------- /server/src/Transmutation.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/server/src/Transmutation.hs -------------------------------------------------------------------------------- /server/src/User/Apps.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/server/src/User/Apps.hs -------------------------------------------------------------------------------- /server/src/User/User.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/server/src/User/User.hs -------------------------------------------------------------------------------- /server/src/Util.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/server/src/Util.hs -------------------------------------------------------------------------------- /server/src/Wheel.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/server/src/Wheel.hs -------------------------------------------------------------------------------- /server/stack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/server/stack.yaml -------------------------------------------------------------------------------- /server/stack.yaml.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/server/stack.yaml.lock -------------------------------------------------------------------------------- /server/test/GameSpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/server/test/GameSpec.hs -------------------------------------------------------------------------------- /server/test/Spec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoganMurley/GALGAGAME/HEAD/server/test/Spec.hs --------------------------------------------------------------------------------