mirror of
https://github.com/Heretek-AI/GDevelop.git
synced 2026-07-24 20:05:39 -04:00
64e6860718
Updated copyrights.
29 lines
666 B
C++
29 lines
666 B
C++
/**
|
|
|
|
GDevelop - Particle System Extension
|
|
Copyright (c) 2010-2015 Florian Rival (Florian.Rival@gmail.com)
|
|
This project is released under the MIT License.
|
|
*/
|
|
|
|
#ifndef EXTENSION_H_INCLUDED
|
|
#define EXTENSION_H_INCLUDED
|
|
namespace gd { class ObjectMetadata; }
|
|
|
|
/**
|
|
* \brief This class declares information about the extension.
|
|
*/
|
|
class Extension : public ExtensionBase
|
|
{
|
|
public:
|
|
Extension();
|
|
virtual ~Extension() {};
|
|
|
|
private:
|
|
void ExtensionSubDeclaration1(gd::ObjectMetadata & objInfos);
|
|
void ExtensionSubDeclaration2(gd::ObjectMetadata & objInfos);
|
|
void ExtensionSubDeclaration3(gd::ObjectMetadata & objInfos);
|
|
};
|
|
|
|
#endif // EXTENSION_H_INCLUDED
|
|
|