26 lines
298 B
C++
26 lines
298 B
C++
|
|
#include "UnixApplication.h"
|
|
|
|
namespace sp {
|
|
|
|
void UnixApplication::init()
|
|
{
|
|
// TODO
|
|
}
|
|
|
|
void UnixApplication::shutdown()
|
|
{
|
|
// TODO
|
|
}
|
|
|
|
PlatformInput& UnixApplication::getInput()
|
|
{
|
|
return m_input;
|
|
}
|
|
|
|
MessageQueue& UnixApplication::getMessageQueue()
|
|
{
|
|
return m_messageQueue;
|
|
}
|
|
|
|
} // namespace sp
|