Files
lonese/Source/lonese/MyPlayerController.cpp
2026-03-14 23:59:25 +08:00

14 lines
243 B
C++

// Fill out your copyright notice in the Description page of Project Settings.
#include "MyPlayerController.h"
APawn* AMyPlayerController::GetOwnedPawn()
{
return GetPawn();
}
void AMyPlayerController::BeginPlay()
{
Super::BeginPlay();
}