SharedDataSlotExample.h 940 B

12345678910111213141516171819202122232425262728293031323334353637383940
  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. #include <ScriptCanvas/Core/Nodeable.h>
  10. #include <ScriptCanvas/Core/NodeableNode.h>
  11. #include <ScriptCanvas/CodeGen/NodeableCodegen.h>
  12. #include <Source/Nodes/Nodeables/SharedDataSlotExample.generated.h>
  13. namespace ScriptCanvasTesting
  14. {
  15. namespace Nodeables
  16. {
  17. class InputMethodSharedDataSlotExample
  18. : public ScriptCanvas::Nodeable
  19. {
  20. SCRIPTCANVAS_NODE(InputMethodSharedDataSlotExample);
  21. public:
  22. };
  23. class BranchMethodSharedDataSlotExample
  24. : public ScriptCanvas::Nodeable
  25. {
  26. SCRIPTCANVAS_NODE(BranchMethodSharedDataSlotExample);
  27. public:
  28. void StringMagicbox(int);
  29. };
  30. }
  31. }