28 lines
380 B
C++
28 lines
380 B
C++
|
|
/* RJNumberProperty.cpp */
|
|
|
|
#include "RJNumberProperty.h"
|
|
|
|
|
|
void RJNumberProperty::_bind_methods()
|
|
{
|
|
GDVIRTUAL_BIND( set, "value" );
|
|
GDVIRTUAL_BIND( get );
|
|
ADD_SIGNAL (MethodInfo( "changed" ) );
|
|
GDVIRTUAL_BIND( get_onChanged );
|
|
GDVIRTUAL_BIND( set_onChanged, "action" );
|
|
}
|
|
|
|
RJNumberProperty::RJNumberProperty()
|
|
{
|
|
|
|
}
|
|
|
|
RJNumberProperty::~RJNumberProperty()
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|