Simple question

hi community , long time ago ive created a project c++ coded… (im recent ue4 user), and once i got into visual studio , i couldnt remember which code was a character, or an actor, pawn etc… is there any way for me to figure out whose what ?

Hope this is some simple question ^^

Thank you.

What kind of names did you give your classes? You should have named them something obvious, if not then check what class they derrive from, that should give you a clue.

Thak you for answering , but how can i see the class that they derrive from ?

On the header file(.h), find the class declaration.
i.e:
class CODENAMESPACE_API AMCharacter : public ACharacter

AMCharacter is the name of your class. ACharacter is the Super class