Pomme/src/PommeInit.h
2020-11-13 22:45:44 +01:00

17 lines
252 B
C++

#pragma once
namespace Pomme
{
// Throw this exception to interrupt the game's main loop
class QuitRequest : public std::exception
{
public:
virtual const char* what() const noexcept;
};
void Init(const char* applName);
void Shutdown();
}