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