Hi, I'm following this tutorial: https://wiki.unrealengine.com/First_...2B%2B_Tutorial
Though even the first step of the code bit about adding the code to the headers is giving me errors. The autogenerated class has like no constructor for .cpp and the header file has an error for the FPSGameMode.generated.h file in #include.
Code here:
Error here:
Though even the first step of the code bit about adding the code to the headers is giving me errors. The autogenerated class has like no constructor for .cpp and the header file has an error for the FPSGameMode.generated.h file in #include.
Code here:
Code:
#pragma once #include "GameFramework/GameMode.h" #include "FPSGameMode.generated.h" UCLASS() class FPSPROJECT_API AFPSGameMode : public AGameMode { GENERATED_BODY() virtual void StartPlay() override; };
Comment