idle_moloch/src/RaidGeldStructs.sol
Mitja Belak 7a32129f7e
Some checks failed
CI / Foundry project (push) Has been cancelled
CI / Foundry project (pull_request) Has been cancelled
Ran forge fmt + solved client bug with amounts being much too high due to change in contract calculations
2024-10-25 11:12:51 +02:00

21 lines
330 B
Solidity

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;
struct Raider {
uint16 level;
}
struct Army {
Raider moloch_denier;
Raider apprentice;
Raider anointed;
Raider champion;
uint256 profit_per_second;
}
struct Player {
uint256 total_minted;
uint256 created_at;
uint256 last_raided_at;
}