Thanks sivan

Do you mean that UE4 comes with a basic Actor class which contain all variables and methods which you would expect from an Actor ?
for example if you want to find the distance between John and Mary, you can write something like

dist = John.position - Mary.position;

instead of the ugly Unity code

dist = transform.position - Mary.transform.position;