Dicewars-Siedler/src/game/player/Player.cpp
2026-02-08 20:05:48 +01:00

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