Moved more component implementations from header file to source.

This commit is contained in:
emb 2015-02-16 07:51:23 -06:00
parent 5d455d1174
commit c74ddfb582
2 changed files with 6 additions and 4 deletions

View File

@ -80,6 +80,11 @@ void Component::AllocateGraphicsMemory()
}
}
Item *Component::GetSelectedItem()
{
return SelectedItem;
}
void Component::TriggerEnterEvent()
{
EnterRequested = true;

View File

@ -57,10 +57,7 @@ public:
protected:
std::string CollectionName;
Item *GetSelectedItem()
{
return SelectedItem;
}
Item *GetSelectedItem();
enum AnimationState
{
IDLE,