${Name}.cpp 820 B

123456789101112131415161718192021222324252627282930
  1. // {BEGIN_LICENSE}
  2. /*
  3. * Copyright (c) Contributors to the Open 3D Engine Project.
  4. * For complete copyright and license terms please see the LICENSE at the root of this distribution.
  5. *
  6. * SPDX-License-Identifier: Apache-2.0 OR MIT
  7. *
  8. */
  9. // {END_LICENSE}
  10. #include "${Name}.h"
  11. /////////////////////////////////////////////////////////////
  12. // This registration only needs to happen once per module
  13. // You can keep it here, or move it into this module's
  14. // system component
  15. #include <ScriptCanvas/AutoGen/ScriptCanvasAutoGenRegistry.h>
  16. #include <Source/${Name}_Nodeables.generated.h>
  17. REGISTER_SCRIPTCANVAS_AUTOGEN_NODEABLE(${Name}Object);
  18. /////////////////////////////////////////////////////////////
  19. namespace ScriptCanvas::Nodes
  20. {
  21. void ${SanitizedCppName}::In()
  22. {
  23. }
  24. } // namespace ScriptCanvas::Nodes