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; } } }