- $#include "Component.h"
- class Component : public Animatable
- {
- void SetEnabled(bool enable);
- void Remove();
-
- unsigned GetID() const;
- Node* GetNode() const;
- Scene* GetScene() const;
- bool IsEnabled() const;
- bool IsEnabledEffective() const;
-
- Component* GetComponent(StringHash type) const;
- Component* GetComponent(const String type) const;
- };
|