Launcher_iOS.mm 683 B

12345678910111213141516171819202122232425
  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. #import <UIKit/UIKit.h>
  9. #include <AzCore/Math/Vector2.h>
  10. int main(int argc, char* argv[])
  11. {
  12. const AZ::Debug::Trace tracer;
  13. NSAutoreleasePool* pool = [[NSAutoreleasePool alloc] init];
  14. UIApplicationMain(argc,
  15. argv,
  16. @"O3DEApplication_iOS",
  17. @"O3DEApplicationDelegate_iOS");
  18. [pool release];
  19. return 0;
  20. }
  21. void CVar_OnViewportPosition([[maybe_unused]] const AZ::Vector2& value) {}