public CameraToolsFactory ( IAddressFinderFactory addressFinderFactory, IGameValueServiceFactory gameValueServiceFactory ) { _addressFinderFactory = addressFinderFactory; _gameValueServiceFactory = gameValueServiceFactory; }
internal AddressFinderModule(IAddressFinderFactory addressFinderFactory, bool isEnabled, IAddressFinderDiagnostics diagnostics) { if (addressFinderFactory == null) { throw new ArgumentNullException("addressFinderFactory"); } this.addressFinderFactory = addressFinderFactory; this.isEnabled = isEnabled; this.diagnostics = diagnostics; }
public GameFunctionHookServiceFactory ( IDllInjector dllInjector, IProcessFunctionsService processFunctionsService, IDllFunctionFinder dllFunctionFinder, IAddressFinderFactory addressFinderFactory, string hookDllPath ) { _dllInjector = dllInjector; _processFunctionsService = processFunctionsService; _dllFunctionFinder = dllFunctionFinder; _addressFinderFactory = addressFinderFactory; _hookDllPath = hookDllPath; }
public AddressFinderWithCacheFactory(IAddressFinderFactory addressFinderFactory) { _addressFinderFactory = addressFinderFactory; }
public CodeInjectionReadinessChecker(IProcessFunctionsService processFunctionsService, IAddressFinderFactory addressFinderFactory) { _processFunctionsService = processFunctionsService; _addressFinderFactory = addressFinderFactory; }
public GameValueServiceFactory(IAddressFinderFactory addressFinderFactory, IProcessFunctionsService processFunctionsService) { _addressFinderFactory = addressFinderFactory; _processFunctionsService = processFunctionsService; }