summaryrefslogtreecommitdiffstats
path: root/engine/include/exceptions/forcequit.hpp
blob: 336b9c0213639662f1709d3da0561de3be4e7e94 (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 * m_reason;

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

#endif