mirror of
https://github.com/edgegamers/Gangs.git
synced 2025-12-05 20:40:30 -08:00
11 lines
299 B
C#
11 lines
299 B
C#
using GangsAPI.Extensions;
|
|
using GangsAPI.Services;
|
|
using Microsoft.Extensions.DependencyInjection;
|
|
|
|
namespace Mock;
|
|
|
|
public static class MemoryImpl {
|
|
public static void AddMemoryImpl(this IServiceCollection collection) {
|
|
collection.AddPluginBehavior<IStatManager, MockStatManager>();
|
|
}
|
|
} |