1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-07-14 12:13:51 +02:00

Surround System.gRand static initializer with #if !BF_RUNTIME_DISABLE

This commit is contained in:
Hunter Bridges 2025-07-10 16:10:51 -07:00
parent 764c454261
commit 0fa00f29b6

View file

@ -306,8 +306,10 @@ namespace System
} }
} }
#if !BF_RUNTIME_DISABLE
static static
{ {
public static Random gRand = new Random() ~ delete _; public static Random gRand = new Random() ~ delete _;
} }
#endif
} }