mirror of
https://github.com/GTA-ASM/SanAndreasUnity
synced 2024-11-23 12:33:02 +00:00
16 lines
209 B
C#
16 lines
209 B
C#
|
|
namespace SanAndreasUnity.Utilities
|
|
{
|
|
|
|
|
|
public class NetUtils
|
|
{
|
|
|
|
public static System.Func<bool> IsServerImpl = () => false;
|
|
|
|
public static bool IsServer => IsServerImpl();
|
|
|
|
|
|
}
|
|
|
|
}
|