mirror of
https://github.com/jpd002/Play-.git
synced 2025-04-28 13:47:57 +03:00
11 lines
202 B
C++
11 lines
202 B
C++
#include "PadHandler.h"
|
|
|
|
void CPadHandler::InsertListener(CPadInterface* pListener)
|
|
{
|
|
m_interfaces.push_back(pListener);
|
|
}
|
|
|
|
void CPadHandler::RemoveAllListeners()
|
|
{
|
|
m_interfaces.clear();
|
|
}
|