소스 검색

Make some global objects const, at least

tags/v0.0.5
Fen Dweller 5 년 전
부모
커밋
ab5eb148c6
No known key found for this signature in database 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";



불러오는 중...
취소
저장