| | 1 | | using DCL.Bots; |
| | 2 | | using DCL.Rendering; |
| | 3 | |
|
| | 4 | | namespace DCL |
| | 5 | | { |
| | 6 | | public static class PlatformContextFactory |
| | 7 | | { |
| | 8 | | public static PlatformContext CreateDefault() |
| | 9 | | { |
| 666 | 10 | | return new PlatformContext( |
| | 11 | | memoryManager: new MemoryManager(), |
| | 12 | | cullingController: CullingController.Create(), |
| | 13 | | clipboard: Clipboard.Create(), |
| | 14 | | physicsSyncController: new PhysicsSyncController(), |
| | 15 | | parcelScenesCleaner: new ParcelScenesCleaner(), |
| | 16 | | debugController: new DebugController(new BotsController()), |
| | 17 | | webRequest: WebRequestController.Create(), |
| | 18 | | serviceProviders: new ServiceProviders(), |
| | 19 | | idleChecker: new IdleChecker(), |
| | 20 | | avatarsLODController: new AvatarsLODController()); |
| | 21 | | } |
| | 22 | | } |
| | 23 | | } |