summaryrefslogtreecommitdiffstats
path: root/engine/include/exceptions/forcequit.hpp
blob: 451190e656306cafeeac715701d912451514caa2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef __FORCE_QUIT_H__
#define __FORCE_QUIT_H__

namespace flat {
    struct ForceQuit {
        const char * reason;

        ForceQuit(const char *reason) : reason(reason) {}
    };
}

#endif