mirror of
https://github.com/Heretek-AI/GDevelop.git
synced 2026-07-24 03:54:34 -04:00
9203fab207
git-svn-id: svn://localhost@6 8062f311-0dae-4547-b526-b8ab9ac864a5
40 lines
768 B
C++
40 lines
768 B
C++
#include "VersionWrapper.h"
|
|
#include "version.h"
|
|
|
|
int GDEditorVersionWrapper::Major()
|
|
{
|
|
return AutoVersion::MAJOR;
|
|
}
|
|
int GDEditorVersionWrapper::Minor()
|
|
{
|
|
return AutoVersion::MINOR;
|
|
}
|
|
int GDEditorVersionWrapper::Build()
|
|
{
|
|
return AutoVersion::BUILD;
|
|
}
|
|
int GDEditorVersionWrapper::Revision()
|
|
{
|
|
return AutoVersion::REVISION;
|
|
}
|
|
string GDEditorVersionWrapper::FullString()
|
|
{
|
|
return AutoVersion::FULLVERSION_STRING;
|
|
}
|
|
string GDEditorVersionWrapper::Date()
|
|
{
|
|
return AutoVersion::DATE;
|
|
}
|
|
string GDEditorVersionWrapper::Month()
|
|
{
|
|
return AutoVersion::MONTH;
|
|
}
|
|
string GDEditorVersionWrapper::Year()
|
|
{
|
|
return AutoVersion::YEAR;
|
|
}
|
|
string GDEditorVersionWrapper::Status()
|
|
{
|
|
return AutoVersion::STATUS;
|
|
}
|