mirror of
https://github.com/Heretek-AI/GDevelop.git
synced 2026-07-23 18:45:48 -04:00
10feb3389a
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
14 lines
295 B
C++
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
|