26 lines
301 B
C++
26 lines
301 B
C++
|
|
||
|
/* RJStringProperty.cpp */
|
||
|
|
||
|
#include "RJStringProperty.h"
|
||
|
|
||
|
|
||
|
void RJStringProperty::_bind_methods()
|
||
|
{
|
||
|
GDVIRTUAL_BIND( set, "value" );
|
||
|
GDVIRTUAL_BIND( get );
|
||
|
ADD_SIGNAL (MethodInfo( "onChange" ) );
|
||
|
}
|
||
|
|
||
|
RJStringProperty::RJStringProperty()
|
||
|
{
|
||
|
|
||
|
}
|
||
|
|
||
|
RJStringProperty::~RJStringProperty()
|
||
|
{
|
||
|
|
||
|
}
|
||
|
|
||
|
|
||
|
|