GDevelop JS Platform
Platform for developing HTML5/Javascript based games with GDevelop
CommonConversionsExtension.h
1 /*
2  * GDevelop JS Platform
3  * Copyright 2008-2016 Florian Rival ([email protected]). All rights
4  * reserved. This project is released under the MIT License.
5  */
6 #ifndef COMMONCONVERSIONSEXTENSION_H
7 #define COMMONCONVERSIONSEXTENSION_H
8 #include "GDCore/Extensions/PlatformExtension.h"
9 
10 namespace gdjs {
11 
18 class CommonConversionsExtension : public gd::PlatformExtension {
19  public:
21  virtual ~CommonConversionsExtension(){};
22 };
23 
24 } // namespace gdjs
25 #endif // COMMONCONVERSIONSEXTENSION_H
Built-in extension providing common functions for conversion between types.
Definition: CommonConversionsExtension.h:18