using System; using UnityEngine; namespace OHM.UnityToolkit { public struct RandomState { public readonly byte[] State; public RandomState(byte[] state) { this = default(RandomState); } } }