1
0
Fork 0
spectre/source/Platform/PlatformApplication.h

27 lines
421 B
C++

#ifndef SPECTRE_PLATFORM_H
#define SPECTRE_PLATFORM_H
namespace sp {
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;
};
} // namespace sp
#endif /* SPECTRE_PLATFORM_H */