This commit is contained in:
Gray
2024-03-08 18:16:32 -05:00
parent 99477f15e0
commit be2fc81942
9 changed files with 43 additions and 38 deletions

View File

@@ -14,4 +14,10 @@ void AController::Possess(class APawn* Pawn)
{
auto PossessFn = FindFunction("Possess");
this->ProcessEvent(PossessFn, &Pawn);
}
void AController::UnPossess()
{
auto UnPossessFn = FindFunction("UnPossess");
this->ProcessEvent(UnPossessFn);
}