What are classes derived from parent classes really

Well it’s the same outcome really , same type of error.
It gives an error in all of the module components, they can’t be found.

My new header file looks like this

// Fill out your copyright notice in the Description page of Project Settings.

#pragma once

include “CoreMinimal.h”
include “LandscapeProxy.h”
include “MyLand.generated.h”

/**
*
*/
UCLASS()
class MYPROJECT211_API AMyLand : public ALandscapeProxy
{
GENERATED_BODY()

};

As you can see the failiure to compile with the errors it has showing that the module is not in the actor class. Just my wild guess.

I will just leave it like this and try with Tsubclassof later. If no results i’m off to RMC to check it out

1 Like