22 lines
189 B
C++
22 lines
189 B
C++
|
|
||
|
/* RJUpdatable.cpp */
|
||
|
|
||
|
#include "RJUpdatable.h"
|
||
|
|
||
|
|
||
|
void RJUpdatable::_bind_methods()
|
||
|
{
|
||
|
GDVIRTUAL_BIND( update );
|
||
|
}
|
||
|
|
||
|
RJUpdatable::RJUpdatable()
|
||
|
{
|
||
|
|
||
|
}
|
||
|
|
||
|
RJUpdatable::~RJUpdatable()
|
||
|
{
|
||
|
|
||
|
}
|
||
|
|