using System.Collections; using System.Collections.Generic; using game; using UnityEngine; public interface ITimeReward : IPersistent { bool IsAvailable { get; } bool TryGetReward(out ConfRewardItem reward); }