Newer
Older
TheVengeance-Project-IADE-Unity2D / Assets / Scripts / Player / Stats / Query.cs
@Rackday Rackday on 29 Oct 505 bytes Major Update
using System.Collections;
using System.Collections.Generic;
using UnityEngine;

namespace MyCollections.Stats
{
    public class Query
    {
        public readonly StatType statType;
        public float value;

        public Query(StatType statType, int value)
        {
            this.statType = statType;
            this.value = value;
        }

        public Query(StatType statType, float value)
        {
            this.statType = statType;
            this.value = value;
        }
    }
}