Initial commit
This commit is contained in:
commit
edfc5298e1
252 changed files with 93965 additions and 0 deletions
25
source/Platform/PlatformApplication.h
Normal file
25
source/Platform/PlatformApplication.h
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
|
||||
#ifndef SPECTRE_PLATFORM_H
|
||||
#define SPECTRE_PLATFORM_H
|
||||
|
||||
class PlatformInput;
|
||||
class PlatformDisplay;
|
||||
class MessageQueue;
|
||||
|
||||
class PlatformApplication
|
||||
{
|
||||
public :
|
||||
virtual void init() = 0;
|
||||
|
||||
virtual void shutdown() = 0;
|
||||
|
||||
//virtual PlatformDisplay& getDisplay() = 0;
|
||||
|
||||
virtual PlatformInput& getInput() = 0;
|
||||
|
||||
virtual MessageQueue& getMessageQueue() = 0;
|
||||
|
||||
virtual void update() = 0;
|
||||
};
|
||||
|
||||
#endif /* SPECTRE_PLATFORM_H */
|
||||
Loading…
Add table
Add a link
Reference in a new issue