Skip to content

Commit

Permalink
feat(ecs): add repeatwhile
Browse files Browse the repository at this point in the history
  • Loading branch information
joaomanita committed Feb 12, 2024
1 parent 675e5d3 commit a6334e2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/include/cubos/core/ecs/system/dispatcher.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ namespace cubos::core::ecs
class GroupStep : public Step, public std::enable_shared_from_this<Step>
{
public:
GroupStep(std::string grouptag, const std::shared_ptr<GroupStep> parentStep)
GroupStep(std::string grouptag, std::shared_ptr<GroupStep> parentStep)
: grouptag(std::move(grouptag))
, mParentStep(std::move(parentStep))
{
Expand Down

0 comments on commit a6334e2

Please sign in to comment.