Traveller/scripts/utils/RandomUtils.cs
霧雨烨 abf03c00a1 Preliminary rewrite of the loot system
初步重写掉落系统
2024-06-16 16:56:45 +08:00

8 lines
140 B
C#

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