コード例 #1
0
ファイル: CharacterDataInst.cs プロジェクト: Boxxxx/clicker
		public CharacterDataInst(CharacterDataInst other) {
			maxHp = other.maxHp;
			hp = other.hp;
			atk = other.atk;
			defLevel = other.defLevel;
			atkLevel = other.atkLevel;
			gold = other.gold;
			itemType = other.itemType;
			currentLifeTime = other.currentLifeTime;
			isDivineReaperUsed = other.isDivineReaperUsed;
			isStockUsed = other.isStockUsed;
		}
コード例 #2
0
ファイル: BattleGenerator.cs プロジェクト: Boxxxx/clicker
		public BattleGenerator(CharacterDataInst charData, MonsterDataInst monData) {
			this.charData = new CharacterDataInst(charData);
			this.monData = new MonsterDataInst(monData);

			Begin();
		}