Component: Rename MindComponent=>PuppetComponent
This commit is contained in:
@@ -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;
|
||||
|
||||
@@ -8,7 +8,7 @@ Component::Component(const std::shared_ptr<ComponentThread> &thread)
|
||||
{
|
||||
}
|
||||
|
||||
MindComponent::MindComponent(
|
||||
PuppetComponent::PuppetComponent(
|
||||
Mind &parent, const std::shared_ptr<ComponentThread> &thread)
|
||||
: Component(thread),
|
||||
parent(parent)
|
||||
|
||||
Reference in New Issue
Block a user