Files
GDevelop/IDE/CompilationChecker.h
T
Florian 8672f179e9 Exchanged all french messages with their English counterparts.
Gui elements in SceneCanvas are now independant from the zoom factor.
Work in progress: NewProjectDialog.

git-svn-id: svn://localhost@837 8062f311-0dae-4547-b526-b8ab9ac864a5
2012-09-20 19:53:26 +00:00

19 lines
472 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 EnsureCorrectGDLVersion();
};
#endif // COMPILATIONCHECKER_H