Traveller/scripts/utils/RandomUtils.cs

8 lines
140 B
C#
Raw Normal View History

using System;
namespace ColdMint.scripts.utils;
public static class RandomUtils
{
public static Random Instance { get; } = new();
}