[C++] iam getting this weird error

Basicly iam getting a : Class dependsOn(class) is a circular dependency error. What is this ? and how do i fix it ?

Hi,

It means that you have two UCLASS headers that are dependent on each other. Perhaps ClassA.h and ClassB.h mutually include each other, or ClassA.h includes ClassB.h and ClassB’s superclass is ClassA.

You need to break the dependency.

Steve