mirror of
https://github.com/LorisYounger/VPet.git
synced 2024-08-30 18:42:36 +00:00
14 lines
241 B
C#
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();
|
|
}
|
|
}
|