11 lines
266 B
C++
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");
|
|
}
|