/* * Copyright (c) Contributors to the Open 3D Engine Project * * SPDX-License-Identifier: Apache-2.0 OR MIT * */ #pragma once #include #include #include #include namespace ScriptCanvasTesting { namespace Nodeables { class InputMethodSharedDataSlotExample : public ScriptCanvas::Nodeable { SCRIPTCANVAS_NODE(InputMethodSharedDataSlotExample); public: }; class BranchMethodSharedDataSlotExample : public ScriptCanvas::Nodeable { SCRIPTCANVAS_NODE(BranchMethodSharedDataSlotExample); public: void StringMagicbox(int); }; } }