Dear community!
Recently I asked myself, what’s the difference between initalizing variables this way:
public int health = 10;
And this way:
public int health;
void Start()
{
health = 10;
}
I hope you can explain me, whats the major difference :)!