VPet/VPet-Simulator.Core/Handle/Function.cs
2022-12-13 15:10:18 +08:00

14 lines
241 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace VPet_Simulator.Core
{
public class Function
{
public static Random Rnd = new Random();
}
}