Files
Project-Reboot-3.0/Project Reboot 3.0/GameMode.cpp
2023-03-30 22:34:26 -04:00

9 lines
182 B
C++

#include "GameMode.h"
#include "reboot.h"
void AGameMode::RestartGame()
{
static auto fn = FindObject<UFunction>("/Script/Engine.GameMode.RestartGame");
this->ProcessEvent(fn);
}