ソースを参照

Make some global objects const, at least

tags/v0.0.5
Fen Dweller 5年前
コミット
ab5eb148c6
この署名に対応する既知のキーがデータベースに存在しません GPGキーID: E80B35A6F11C3656
1個のファイルの変更6行の追加7行の削除
  1. +6
    -7
      gorge.js

+ 6
- 7
gorge.js ファイルの表示

@@ -1,19 +1,18 @@
"use strict";

let belongings = {};
const belongings = {};

let ownedUpgrades = {};
let remainingUpgrades = [];
const ownedUpgrades = {};
const remainingUpgrades = [];
let showOwnedUpgrades = false;

let effects = {};
const effects = {};


let resources = {};
const resources = {};

let updateRate = 60;

let currentProductivity = {};
const currentProductivity = {};
let clickBonus = 0;
let clickVictim = "micro";



読み込み中…
キャンセル
保存