rj-action-library-cpp/RJUpdatable.cpp

24 lines
202 B
C++
Raw Normal View History

2024-05-08 07:17:37 +00:00
/* RJUpdatable.cpp */
#include "RJUpdatable.h"
void RJUpdatable::_bind_methods()
{
2024-05-19 15:48:01 +00:00
GDVIRTUAL_BIND( update, "delta" );
2024-05-08 07:17:37 +00:00
}
RJUpdatable::RJUpdatable()
{
2024-05-19 15:48:01 +00:00
2024-05-08 07:17:37 +00:00
}
RJUpdatable::~RJUpdatable()
{
}
2024-05-19 15:48:01 +00:00