GDevelop JS Platform
Platform for developing HTML5/Javascript based games with GDevelop
EffectExtension.h
1 /*
2  * GDevelop JS Platform
3  * Copyright 2008-2023 Florian Rival ([email protected]). All rights
4  * reserved. This project is released under the MIT License.
5  */
6 #pragma once
7 #include "GDCore/Extensions/PlatformExtension.h"
8 
9 namespace gdjs {
10 
16 class EffectExtension : public gd::PlatformExtension {
17  public:
19  virtual ~EffectExtension(){};
20 };
21 
22 } // namespace gdjs
Built-in extension providing Effect object capacity.
Definition: EffectExtension.h:16