mirror of
https://github.com/Heretek-AI/GDevelop.git
synced 2026-07-23 02:25:52 -04:00
20 lines
402 B
C++
20 lines
402 B
C++
/**
|
|
|
|
GDevelop - Network Extension
|
|
Copyright (c) 2010-2016 Florian Rival (Florian.Rival@gmail.com)
|
|
This project is released under the MIT License.
|
|
*/
|
|
|
|
#include "RuntimeSceneNetworkDatas.h"
|
|
#include "SceneNetworkDatas.h"
|
|
#include <iostream>
|
|
|
|
RuntimeSceneNetworkDatas::RuntimeSceneNetworkDatas(const SceneNetworkDatas & behaviorSharedDatas)
|
|
{
|
|
}
|
|
|
|
RuntimeSceneNetworkDatas::~RuntimeSceneNetworkDatas()
|
|
{
|
|
}
|
|
|