// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; /** * @title Quest * @author Limit Break, Inc. * @notice Quest data structure for {IAdventurous} contracts. */ struct Quest { bool isActive; uint32 questId; uint64 startTimestamp; uint32 arrayIndex; }