mirror of
https://github.com/Heretek-AI/GDevelop.git
synced 2026-08-27 21:19:59 -04:00
64e6860718
Updated copyrights.
28 lines
579 B
C++
28 lines
579 B
C++
/*
|
|
* GDevelop JS Platform
|
|
* Copyright 2008-2015 Florian Rival (Florian.Rival@gmail.com). All rights reserved.
|
|
* This project is released under the MIT License.
|
|
*/
|
|
#ifndef WINDOWEXTENSION_H
|
|
#define WINDOWEXTENSION_H
|
|
#include "GDCore/PlatformDefinition/PlatformExtension.h"
|
|
|
|
namespace gdjs
|
|
{
|
|
|
|
/**
|
|
* \brief Built-in extension providing common functions related to the window/canvas.
|
|
*
|
|
* \ingroup BuiltinExtensions
|
|
*/
|
|
class WindowExtension : public gd::PlatformExtension
|
|
{
|
|
public :
|
|
|
|
WindowExtension();
|
|
virtual ~WindowExtension() {};
|
|
};
|
|
|
|
}
|
|
#endif // WINDOWEXTENSION_H
|