1
0
Fork 0
spectre/source/Platform/Unix/UnixApplication.cpp

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