${Name}.cpp 718 B

12345678910111213141516171819202122232425262728
  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. /////////////////////////////////////////////////////////////
  17. namespace ScriptCanvas::Nodes
  18. {
  19. void ${SanitizedCppName}::In()
  20. {
  21. }
  22. } // namespace ScriptCanvas::Nodes