mirror of
https://github.com/Heretek-AI/GDevelop.git
synced 2026-07-21 17:45:25 -04:00
39 lines
998 B
C++
39 lines
998 B
C++
/*
|
|
* GDevelop Core
|
|
* Copyright 2008-2016 Florian Rival (Florian.Rival@gmail.com). All rights
|
|
* reserved. This project is released under the MIT License.
|
|
*/
|
|
#pragma once
|
|
|
|
#include "GDCore/String.h"
|
|
#include <vector>
|
|
|
|
namespace gd {
|
|
class EventsBasedObject;
|
|
class Project;
|
|
} // namespace gd
|
|
|
|
namespace gd {
|
|
|
|
class GD_CORE_API EventsBasedObjectVariantHelper {
|
|
public:
|
|
/**
|
|
* @brief Apply the changes done on events-based object children to all its
|
|
* variants.
|
|
*/
|
|
static void
|
|
ComplyVariantsToEventsBasedObject(const gd::Project &project,
|
|
gd::EventsBasedObject &eventsBasedObject);
|
|
|
|
static std::vector<gd::String> FindAllChildrenCustomObjectType(
|
|
const gd::Project &project,
|
|
const gd::EventsBasedObject &eventsBasedObject);
|
|
|
|
private:
|
|
static void FindAllChildrenCustomObjectType(
|
|
const gd::Project &project,
|
|
const gd::EventsBasedObject &eventsBasedObject,
|
|
std::vector<gd::String> &objectTypes);
|
|
};
|
|
|
|
} // namespace gd
|