Traveller/scripts/utils/RandomUtils.cs

8 lines
140 B
C#
Raw Normal View History

2024-12-06 02:23:54 +00:00
using System;
namespace ColdMint.scripts.utils;
public static class RandomUtils
{
public static Random Instance { get; } = new();
}