Files
open-conflict/Source/OpenConflict/PlayerCharacter/DDIPlayerController.h
Cody Larkin c91d73ed33 Base files added
May have an idea of what caused problem
2025-11-21 23:38:16 -05:00

23 lines
492 B
C++

// Fill out your copyright notice in the Description page of Project Settings.
#pragma once
#include "CoreMinimal.h"
#include "GameFramework/PlayerController.h"
#include "DDIPlayerController.generated.h"
/**
*
*/
UCLASS()
class OPENCONFLICT_API ADDIPlayerController : public APlayerController
{
GENERATED_BODY()
virtual void BeginPlay() override;
UPROPERTY(EditAnywhere, BlueprintReadOnly, meta=(AllowPrivateAccess=true))
TArray<class UInputMappingContext*> MappingContexts;
};