34 lines
459 B
C++
34 lines
459 B
C++
|
|
/* RJStringProperty.h */
|
|
|
|
#ifndef ROKOJORI__STRING_PROPERTY_H
|
|
#define ROKOJORI__STRING_PROPERTY_H
|
|
|
|
|
|
#include "./RJNetworkNode.h"
|
|
|
|
|
|
class RJStringProperty : public RJNetworkNode
|
|
{
|
|
GDCLASS(RJStringProperty, RJNetworkNode);
|
|
|
|
protected:
|
|
static void _bind_methods();
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
GDVIRTUAL1( set, String );
|
|
GDVIRTUAL0R( String, get );
|
|
/* signal onChange */
|
|
|
|
RJStringProperty();
|
|
|
|
~RJStringProperty();
|
|
};
|
|
|
|
|
|
#endif // ROKOJORI__STRING_PROPERTY_H
|