Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include "play_state.hpp"
- #include <stdexcept>
- int main()
- {
- try {
- PlayState play_state;
- prg::application.addState("play_state", play_state);
- prg::application.run("Adam Turner", "P4261882", 1024, 768);
- }
- catch(std::exception& e) {
- prg::logger.error(e.what());
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment