rj-action-library-cpp/RJUpdatable.cpp

27 lines
284 B
C++
Raw Normal View History

2024-05-08 07:17:37 +00:00
/* RJUpdatable.cpp */
#include "RJUpdatable.h"
2024-08-02 06:21:30 +00:00
// Registers fields, signals and methods for Godot
2024-05-08 07:17:37 +00:00
void RJUpdatable::_bind_methods()
{
2024-05-19 15:48:01 +00:00
GDVIRTUAL_BIND( update, "delta" );
2024-05-08 07:17:37 +00:00
}
2024-08-02 06:21:30 +00:00
// Constructor
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
}
2024-08-02 06:21:30 +00:00
// Destructor
2024-05-08 07:17:37 +00:00
RJUpdatable::~RJUpdatable()
{
}
2024-05-19 15:48:01 +00:00
2024-08-02 06:21:30 +00:00