Files
GDevelop/GDevelop.js/Bindings/BehaviorSharedDataJsImplementation.h
T
2019-06-16 17:08:55 +01:00

35 lines
1.2 KiB
C++

#include <GDCore/Project/PropertyDescriptor.h>
#include <GDCore/Project/BehaviorsSharedData.h>
#include <GDCore/Project/Project.h>
#include <GDCore/Serialization/Serializer.h>
#include <GDCore/Serialization/SerializerElement.h>
#include <emscripten.h>
using namespace gd;
/**
* \brief An adapter to implement a gd::BehaviorsSharedData in JavaScript.
*
* This is the class to be used to define shared data for a BEHAVIOR in
* JsExtension.js
*/
class BehaviorSharedDataJsImplementation : public gd::BehaviorsSharedData {
public:
BehaviorSharedDataJsImplementation(){};
virtual BehaviorSharedDataJsImplementation* Clone() const override;
virtual std::map<gd::String, gd::PropertyDescriptor> GetProperties(
const gd::SerializerElement& behaviorSharedDataContent,
gd::Project& project) const override;
virtual bool UpdateProperty(gd::SerializerElement& behaviorSharedDataContent,
const gd::String& name,
const gd::String& value,
gd::Project& project) override;
virtual void InitializeContent(
gd::SerializerElement& behaviorSharedDataContent) override;
void __destroy__();
private:
};