VPet/VPet-Simulator.Core/Handle/Function.cs

14 lines
241 B
C#
Raw Normal View History

2022-12-13 07:10:18 +00:00
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();
}
}