Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -565,7 +565,7 @@ Update `GameManager.h` as follows to set up the Unreal client connection to the
class UDbConnection;

UCLASS()
class CLIENT_UNREAL_API AGameManager : public AActor
class BLACKHOLIO_API AGameManager : public AActor
{
GENERATED_BODY()

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1038,7 +1038,7 @@ struct FEventContext;
struct FEntityType;

UCLASS()
class CLIENT_UNREAL_API AEntity : public AActor
class BLACKHOLIO_API AEntity : public AActor
{
GENERATED_BODY()

Expand Down Expand Up @@ -1153,7 +1153,7 @@ struct FCircleType;
class APlayerPawn;

UCLASS()
class CLIENT_UNREAL_API ACircle : public AEntity
class BLACKHOLIO_API ACircle : public AEntity
{
GENERATED_BODY()

Expand Down Expand Up @@ -1261,7 +1261,7 @@ Open `Food.h` and update it as follows:
struct FFoodType;

UCLASS()
class CLIENT_UNREAL_API AFood : public AEntity
class BLACKHOLIO_API AFood : public AEntity
{
GENERATED_BODY()

Expand Down Expand Up @@ -1320,7 +1320,7 @@ class ACircle;
struct FPlayerType;

UCLASS()
class CLIENT_UNREAL_API APlayerPawn : public APawn
class BLACKHOLIO_API APlayerPawn : public APawn
{
GENERATED_BODY()

Expand Down Expand Up @@ -1714,14 +1714,14 @@ class AFood;
class APlayerPawn;

UCLASS()
class CLIENT_UNREAL_API AGameManager : public AActor
class BLACKHOLIO_API AGameManager : public AActor
// ...
```

Add in public below the TokenFilePath:

```cpp
class CLIENT_UNREAL_API AGameManager : public AActor
class BLACKHOLIO_API AGameManager : public AActor
{
GENERATED_BODY()

Expand Down Expand Up @@ -2027,7 +2027,7 @@ Edit `BlackholioPlayerController.h` as follows:
class APlayerPawn;

UCLASS()
class CLIENT_UNREAL_API ABlackholioPlayerController : public APlayerController
class BLACKHOLIO_API ABlackholioPlayerController : public APlayerController
{
GENERATED_BODY()

Expand Down
Loading
Loading