8 lines
140 B
C#
8 lines
140 B
C#
|
using System;
|
|||
|
|
|||
|
namespace ColdMint.scripts.utils;
|
|||
|
|
|||
|
public static class RandomUtils
|
|||
|
{
|
|||
|
public static Random Instance { get; } = new();
|
|||
|
}
|