This is because you have an optional property that does not have a default value.
var hero: JTHero
It is not optional, but it also does not matter.
So you can make this optional by doing
var hero: JTHero?
Or you can create an init method and set the value there.
Or create a default value ...
var hero = JTHero()
There are many ways to do the latter.
source share