Created
October 1, 2013 01:24
-
-
Save barisusakli/6772709 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class IComponent | |
{ | |
public: | |
template<typename T> | |
static std::shared_ptr<T> get(const std::shared_ptr<Entity>& entity) | |
{ | |
return std::dynamic_pointer_cast<T>(entity->getComponent(T::Name())); | |
} | |
}; | |
// | |
auto foo = IComponent::get<SomeComponent>(entity); | |
if(foo) { | |
// entity has SomeComponent | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment