I was wondering why is it that when I create a custom class, I have to declare an object like this:
Person Bob = new Person;
But with Unity's custom classes I don't; Example:
puiblic RaycastHit hit;
public Color myColor;
public RigidBody rB;