3
0

ScriptEventTestUtilities.h 503 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. #pragma once
  9. namespace AZ
  10. {
  11. class ReflectContext;
  12. }
  13. namespace ScriptEventsTests
  14. {
  15. namespace Utilities
  16. {
  17. void Reflect(AZ::ReflectContext* context);
  18. void ScriptExpectTrue(bool check, const char* msg);
  19. void ScriptTrace(const char* txt);
  20. }
  21. }