17 lines
207 B
C#
17 lines
207 B
C#
using System;
|
|
using UnityEngine;
|
|
|
|
namespace OHM.UnityToolkit
|
|
{
|
|
public struct RandomState
|
|
{
|
|
public readonly byte[] State;
|
|
|
|
public RandomState(byte[] state)
|
|
{
|
|
this = default(RandomState);
|
|
}
|
|
|
|
}
|
|
}
|