player.cpp 225 B

12345678910111213141516
  1. // Copyright (c) 2022-2023 the Dviglo project
  2. // Copyright (c) 2008-2023 the Urho3D project
  3. // License: MIT
  4. #include "player.h"
  5. namespace Urho3D
  6. {
  7. Player::Player()
  8. : score(0)
  9. , nodeID(0)
  10. {
  11. }
  12. } // namespace Urho3D