/* * GDevelop Core * Copyright 2008-2016 Florian Rival (Florian.Rival@gmail.com). All rights * reserved. This project is released under the MIT License. */ #include "GDCore/Project/BehaviorsSharedData.h" #if defined(GD_IDE_ONLY) #include #include "GDCore/Project/PropertyDescriptor.h" #endif namespace gd { BehaviorsSharedData::~BehaviorsSharedData(){}; #if defined(GD_IDE_ONLY) std::map BehaviorsSharedData::GetProperties( const gd::SerializerElement& behaviorSharedDataContent) const { std::map nothing; return nothing; } #endif } // namespace gd