mirror of
https://github.com/Heretek-AI/GDevelop.git
synced 2026-07-22 10:05:37 -04:00
c2ca8cf0d9
Corrected wiki links in welcome screen. Added victor Levasseur to contributors list. git-svn-id: svn://localhost@599 8062f311-0dae-4547-b526-b8ab9ac864a5
18 lines
470 B
C++
18 lines
470 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
|