public RimHelperProxy(ModContentPack content) : base(content) { IPC.Create(); Log.Warning($"[RimHelperProxy] Shared memory with size: {IPC.MemorySize / (1024 * 1024)} Mb allocated!"); HM.Init(); new Thread(() => // Exception not handling from another threads! { while (true) { HandleMessagesTick(); ResetTick(); Thread.Sleep(100); } }).Start(); }