mirror of
https://github.com/Heretek-AI/GDevelop.git
synced 2026-07-25 04:15:49 -04:00
20 lines
424 B
C++
20 lines
424 B
C++
/**
|
|
|
|
GDevelop - Path Automatism Extension
|
|
Copyright (c) 2010-2014 Florian Rival (Florian.Rival@gmail.com)
|
|
This project is released under the MIT License.
|
|
*/
|
|
|
|
#include "RuntimeScenePathDatas.h"
|
|
#include "ScenePathDatas.h"
|
|
|
|
RuntimeScenePathDatas::RuntimeScenePathDatas(const ScenePathDatas & automatismSharedDatas)
|
|
{
|
|
globalPaths = automatismSharedDatas.globalPaths;
|
|
}
|
|
|
|
RuntimeScenePathDatas::~RuntimeScenePathDatas()
|
|
{
|
|
}
|
|
|