feat: implemented IPlayer::get_player_id

stripped
Sara 2024-03-16 20:56:36 +01:00
parent f8f92c1513
commit 7d7e1ac584
1 changed files with 8 additions and 0 deletions

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);
}
}