Files
GDevelop/Extensions/Network/RuntimeSceneNetworkDatas.h
T
Florian Rival a8559bfbbc Add clang-format to format (C++) source files automatically (#491)
* Update all CMakeLists of extensions to use clang-format
* Run clang-format on all Extensions
* Update GDCore CMakeLists.txt to add clang-format
* Run clang-format on GDCore files
* Update GDJS and GDCpp CMakeLists.txt to add clang-format
* Run clang-format on GDCpp and GDJS files
2018-05-09 15:57:38 -07:00

32 lines
834 B
C++

/**
GDevelop - Network Extension
Copyright (c) 2010-2016 Florian Rival (Florian.Rival@gmail.com)
This project is released under the MIT License.
*/
#ifndef RUNTIMESCENENETWORKDATAS_H
#define RUNTIMESCENENETWORKDATAS_H
#include <iostream>
#include "GDCpp/Runtime/BehaviorsRuntimeSharedData.h"
class SceneNetworkDatas;
/**
* Datas shared by Network Behavior at runtime ( i.e. Nothing )
*/
class GD_EXTENSION_API RuntimeSceneNetworkDatas
: public BehaviorsRuntimeSharedData {
public:
RuntimeSceneNetworkDatas(const SceneNetworkDatas& behaviorSharedDatas);
virtual ~RuntimeSceneNetworkDatas();
virtual std::shared_ptr<BehaviorsRuntimeSharedData> Clone() const {
return std::shared_ptr<BehaviorsRuntimeSharedData>(
new RuntimeSceneNetworkDatas(*this));
}
private:
};
#endif // RUNTIMESCENENETWORKDATAS_H