mirror of
https://github.com/Heretek-AI/GDevelop.git
synced 2026-07-21 09:35:27 -04:00
1a27f689e0
* This also includes extensions code. Only show in developer changelog
20 lines
435 B
C++
20 lines
435 B
C++
/**
|
|
|
|
GDevelop - Particle System Extension
|
|
Copyright (c) 2010-2016 Florian Rival (Florian.Rival@gmail.com)
|
|
This project is released under the MIT License.
|
|
*/
|
|
|
|
#ifndef EXTENSION_H_INCLUDED
|
|
#define EXTENSION_H_INCLUDED
|
|
#include "GDCore/Extensions/PlatformExtension.h"
|
|
namespace gd {
|
|
class ObjectMetadata;
|
|
class PlatformExtension;
|
|
}
|
|
|
|
void DeclareParticleSystemExtension(gd::PlatformExtension& extension);
|
|
|
|
|
|
#endif // EXTENSION_H_INCLUDED
|