Unified.cpp 555 B

12345678910111213141516171819202122232425262728293031
  1. /*
  2. * Copyright (c) Contributors to the Open 3D Engine Project.
  3. * For complete copyright and license terms please see the LICENSE at the root of this distribution.
  4. *
  5. * SPDX-License-Identifier: Apache-2.0 OR MIT
  6. *
  7. */
  8. namespace O3DELauncher
  9. {
  10. bool WaitForAssetProcessorConnect()
  11. {
  12. return true;
  13. }
  14. bool IsDedicatedServer()
  15. {
  16. return false;
  17. }
  18. const char* GetLogFilename()
  19. {
  20. return "@log@/Unified.log";
  21. }
  22. const char* GetLauncherTypeSpecialization()
  23. {
  24. return "unified";
  25. }
  26. }