feat: implemented IPlayer::get_player_id

This commit is contained in:
Sara 2024-03-16 20:56:36 +01:00
parent f8f92c1513
commit 7d7e1ac584

8
player.cpp Normal file
View file

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