mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-16 21:17:39 +03:00
12 lines
248 B
C#
12 lines
248 B
C#
using System;
|
|
using Content.Shared;
|
|
using Content.Shared.Module;
|
|
|
|
namespace Content.Client.IoC
|
|
{
|
|
public sealed class ClientModuleTestingCallbacks : SharedModuleTestingCallbacks
|
|
{
|
|
public Action? ClientBeforeIoC { get; set; }
|
|
}
|
|
}
|