Skip to content

Instantly share code, notes, and snippets.

@masterkitano
Last active May 30, 2018 23:23
Show Gist options
  • Select an option

  • Save masterkitano/44d3544eeadb09c52179b9dc95b19170 to your computer and use it in GitHub Desktop.

Select an option

Save masterkitano/44d3544eeadb09c52179b9dc95b19170 to your computer and use it in GitHub Desktop.

Revisions

  1. masterkitano created this gist May 30, 2018.
    19 changes: 19 additions & 0 deletions gistfile1.txt
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,19 @@
    (function()
    {
    'use strict';

    angular
    .module('app')
    .constant
    (
    "ENV",
    {
    "playfab_title_id" : "210E",
    "assets_url" : "./assets/img/",
    "game_assets_url" : "./assets/img/games/",
    "photon_app_id" : "41fe4a23-cc28-4163-b13b-803bca2e5860",
    "photon_protocol" : Photon.ConnectionProtocol.Wss,
    "photon_app_version" : "1.0"
    }
    );
    })();