Remove unused IRand interface

This commit is contained in:
PJB3005
2025-12-23 18:33:44 +01:00
parent 9a3aad4630
commit 6f2c45aab7

View File

@@ -1,11 +0,0 @@
namespace Robust.Client.Utility
{
public interface IRand
{
int Next();
int Next(int maxValue);
int Next(int minValue, int maxValue);
void NextBytes(byte[] buffer);
double NextDouble();
}
}