Utility/Node: Add a constructor taking translation/rotation/scale

This commit is contained in:
SirLynix
2023-04-05 08:51:24 +02:00
parent 0656b388bc
commit 40b6102977
3 changed files with 6 additions and 6 deletions

View File

@@ -16,7 +16,7 @@ namespace Nz
class NAZARA_UTILITY_API NodeComponent : public Node
{
public:
NodeComponent() = default;
using Node::Node;
NodeComponent(const NodeComponent&) = default;
NodeComponent(NodeComponent&&) noexcept = default;
~NodeComponent() = default;