mirror of
https://github.com/Heretek-AI/GDevelop.git
synced 2026-07-25 20:35:52 -04:00
34ca93ec70
git-svn-id: svn://localhost@689 8062f311-0dae-4547-b526-b8ab9ac864a5
21 lines
244 B
C++
21 lines
244 B
C++
#include "Project.h"
|
|
#include "GDCore/PlatformDefinition/Platform.h"
|
|
|
|
namespace gd
|
|
{
|
|
|
|
std::vector < std::string > Project::noPlatformExtensionsUsed;
|
|
|
|
Project::Project()
|
|
{
|
|
//ctor
|
|
}
|
|
|
|
Project::~Project()
|
|
{
|
|
//dtor
|
|
}
|
|
|
|
|
|
}
|