mirror of
https://github.com/4ian/GDevelop.git
synced 2025-10-15 10:19:04 +00:00
19 lines
447 B
C++
19 lines
447 B
C++
#ifndef COMPILATIONCHECKER_H
|
|
#define COMPILATIONCHECKER_H
|
|
|
|
/**
|
|
* \brief Internal class used to ensure that the IDE is compiled and run with the same version of GDL
|
|
*/
|
|
class CompilationChecker
|
|
{
|
|
public:
|
|
/**
|
|
* Return false if the IDE wasn't compiled for the current version of GDL, and display
|
|
* an error message in the console.
|
|
*/
|
|
static bool EnsureCorrectGDVersion();
|
|
};
|
|
|
|
#endif // COMPILATIONCHECKER_H
|
|
|