using System; using UnityEngine; namespace UnityEngine.Perception.Randomization.Samplers { /// /// Generates random values from probability distributions /// public interface ISampler { /// /// Generates one sample /// /// The generated sample float Sample(); /// /// Validates that the sampler is configured properly /// void Validate(); } }