I’m going through the [3rd person power-up game with C++][1] tutorial,and on the third video Lauren uses a UPROPERTY to declare the PickupMesh in Pickup.h.
Using VS Community 2015, I can build the project fine within Visual Studio, however, UPROPERTY remains underlined with a green squiggly, and has the message: Function definition for ‘UPROPERTY’ not found
When I go to compile within the UE 4 editor however, it throws an error, stating
Member variable declaration: Missing variable type. Pickup.h(44)
This is the same line as the UPROPERTY.
Going to try this in VS 2013 to see if it makes a difference.