mirror of
https://github.com/Heretek-AI/GDevelop.git
synced 2026-07-22 01:55:25 -04:00
1a27f689e0
* This also includes extensions code. Only show in developer changelog
27 lines
606 B
C++
27 lines
606 B
C++
/**
|
|
|
|
GDevelop - TextEntry Object Extension
|
|
Copyright (c) 2011-2013 Florian Rival (Florian.Rival@gmail.com)
|
|
This project is released under the MIT License.
|
|
*/
|
|
|
|
#ifndef TEXTENTRYOBJECT_H
|
|
#define TEXTENTRYOBJECT_H
|
|
#include "GDCore/Project/Object.h"
|
|
|
|
/**
|
|
* \brief Simple object which stores user keyboard input.
|
|
*/
|
|
class GD_EXTENSION_API TextEntryObject : public gd::Object {
|
|
public:
|
|
TextEntryObject(gd::String name_);
|
|
virtual ~TextEntryObject(){};
|
|
virtual std::unique_ptr<gd::Object> Clone() const {
|
|
return gd::make_unique<TextEntryObject>(*this);
|
|
}
|
|
|
|
private:
|
|
};
|
|
|
|
#endif // TEXTENTRYOBJECT_H
|