10 lines
161 B
C++
10 lines
161 B
C++
//
|
|
// Created by sebastian on 08.02.26.
|
|
//
|
|
|
|
#include "Player.h"
|
|
|
|
const std::unique_ptr<PlayerInventory> & Player::getInventory() const {
|
|
return inventory;
|
|
}
|