Component: Rename MindComponent=>PuppetComponent

This commit is contained in:
2025-12-27 13:29:49 -04:00
parent 2222491c21
commit cd77f4b02d
7 changed files with 12 additions and 12 deletions
+3 -3
View File
@@ -23,12 +23,12 @@ public:
public:
};
class MindComponent
class PuppetComponent
: public Component
{
public:
MindComponent(Mind &parent, const std::shared_ptr<ComponentThread> &thread);
~MindComponent() = default;
PuppetComponent(Mind &parent, const std::shared_ptr<ComponentThread> &thread);
~PuppetComponent() = default;
public:
Mind &parent;