mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-02-14 19:29:36 +01:00
14 lines
268 B
C#
14 lines
268 B
C#
using System.Runtime.CompilerServices;
|
|
using Robust.Shared.Interop.RobustNative;
|
|
|
|
namespace Robust.Server;
|
|
|
|
internal static class ModuleInit
|
|
{
|
|
[ModuleInitializer]
|
|
public static void Initialize()
|
|
{
|
|
RobustNativeDll.IsServerProcess = true;
|
|
}
|
|
}
|