Files
GDevelop/Extensions/TextEntryObject/TextEntryObject.h
T
Florian Rival 1a27f689e0 Remove deprecated/unused/unmaintained GDCpp code (#2930)
* This also includes extensions code.

Only show in developer changelog
2021-08-17 14:34:58 +02:00

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