GDevelop Core
Core library for developing platforms and tools compatible with GDevelop.
EventsBasedObjectVariantHelper.h
1 /*
2  * GDevelop Core
3  * Copyright 2008-2016 Florian Rival ([email protected]). All rights
4  * reserved. This project is released under the MIT License.
5  */
6 #pragma once
7 
8 namespace gd {
9 class EventsBasedObject;
10 class Project;
11 } // namespace gd
12 
13 namespace gd {
14 
15 class GD_CORE_API EventsBasedObjectVariantHelper {
16 public:
21  static void
22  ComplyVariantsToEventsBasedObject(const gd::Project &project,
23  gd::EventsBasedObject &eventsBasedObject);
24 };
25 
26 } // namespace gd
Represents an object that is implemented with events.
Definition: EventsBasedObject.h:32
Definition: EventsBasedObjectVariantHelper.h:15
Base class representing a project (game), including all resources, scenes, objects,...
Definition: Project.h:50
Definition: CommonTools.h:24