Files
GDevelop/GDCpp/Runtime/CompilationChecker.h
T
Florian 10feb3389a Added CMakeLists.txt
Moved Runtime folder to GDCpp ( It's more logical ). 
Added support for extensions library files finishing in .dll.a.

git-svn-id: svn://localhost@1149 8062f311-0dae-4547-b526-b8ab9ac864a5
2013-07-29 21:51:21 +00:00

14 lines
295 B
C++

#ifndef COMPILATIONCHECKER_H
#define COMPILATIONCHECKER_H
/**
* Class used to ensure that the main executable is using a correct version of GDCpp.[dll/so].
*/
class CompilationChecker
{
public:
static bool EnsureCorrectGDVersion();
};
#endif // COMPILATIONCHECKER_H