mirror of
https://github.com/Heretek-AI/GDevelop.git
synced 2026-07-22 10:05:37 -04:00
693150781f
git-svn-id: svn://localhost@600 8062f311-0dae-4547-b526-b8ab9ac864a5
14 lines
294 B
C++
14 lines
294 B
C++
#ifndef COMPILATIONCHECKER_H
|
|
#define COMPILATIONCHECKER_H
|
|
|
|
/**
|
|
* Class used to ensure that the main executable is using a correct version of gdl.[dll/so].
|
|
*/
|
|
class CompilationChecker
|
|
{
|
|
public:
|
|
static bool EnsureCorrectGDLVersion();
|
|
};
|
|
|
|
#endif // COMPILATIONCHECKER_H
|