#include "Player.h" void Player::_register_methods() { register_method((char*)"_process", &Player::_process); } void Player::_process(float delta) { } Player::Player() { }