GDevelop JS Platform
Platform for developing HTML5/Javascript based games with GDevelop
AnimatableExtension.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 AnimatableExtension : public gd::PlatformExtension {
17  public:
19  virtual ~AnimatableExtension(){};
20 };
21 
22 } // namespace gdjs
Built-in extension providing Animatable object capacity.
Definition: AnimatableExtension.h:16