Files
BusyRabbit/Source/BusyRabbit/Private/BusyPlayerState.cpp
2025-07-09 01:08:35 +08:00

11 lines
266 B
C++

// Fill out your copyright notice in the Description page of Project Settings.
#include "BusyPlayerState.h"
#include "Components/InventoryComponent.h"
ABusyPlayerState::ABusyPlayerState(){
Inventory = CreateDefaultSubobject<UInventoryComponent>("Inventory");
}