Danbias/Code/Misc/EventHandler/EventButtonCollection.cpp

25 lines
395 B
C++
Raw Normal View History

2014-01-31 13:06:11 +01:00
#include "EventButtonCollection.h"
using namespace Oyster::Event;
EventButtonCollection::EventButtonCollection()
{
}
EventButtonCollection::~EventButtonCollection()
{
}
void EventButtonCollection::Update(InputClass* inputObject)
{
for(int i = 0; i < buttons.size(); i++)
{
buttons.at(i)->Update(inputObject);
}
}
EventButton* EventButtonCollection::AddButton(EventButton* button)
{
}