mirror of
https://github.com/4ian/GDevelop.git
synced 2025-10-15 10:19:04 +00:00
29 lines
837 B
C++
29 lines
837 B
C++
/*
|
|
* GDevelop Core
|
|
* Copyright 2008-2016 Florian Rival (Florian.Rival@gmail.com). All rights
|
|
* reserved. This project is released under the MIT License.
|
|
*/
|
|
#include "ProjectStripper.h"
|
|
|
|
#include "GDCore/Project/ExternalEvents.h"
|
|
#include "GDCore/Project/ExternalLayout.h"
|
|
#include "GDCore/Project/Layout.h"
|
|
#include "GDCore/Project/Project.h"
|
|
|
|
namespace gd {
|
|
|
|
void GD_CORE_API ProjectStripper::StripProjectForExport(gd::Project& project) {
|
|
project.GetObjectGroups().Clear();
|
|
while (project.GetExternalEventsCount() > 0)
|
|
project.RemoveExternalEvents(project.GetExternalEvents(0).GetName());
|
|
|
|
for (unsigned int i = 0; i < project.GetLayoutsCount(); ++i) {
|
|
project.GetLayout(i).GetObjectGroups().Clear();
|
|
project.GetLayout(i).GetEvents().Clear();
|
|
}
|
|
|
|
project.ClearEventsFunctionsExtensions();
|
|
}
|
|
|
|
} // namespace gd
|