godot-cpp-utils/player.cpp

9 lines
122 B
C++
Raw Normal View History

#include "player.hpp"
namespace godot {
uint32_t IPlayer::get_player_id() {
return this->player_id.value_or(0);
}
}