Traveller/scripts/utils/RandomUtils.cs
2024-12-06 10:23:54 +08:00

8 lines
140 B
C#

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