source/Platform/Unix: stub implementation
This commit is contained in:
parent
b0d14b91e0
commit
38d333862a
20 changed files with 498 additions and 2 deletions
26
source/Platform/Unix/UnixApplication.cpp
Normal file
26
source/Platform/Unix/UnixApplication.cpp
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
|
||||
#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
|
||||
Loading…
Add table
Add a link
Reference in a new issue