otakusenpai
09/16/2018, 10:46 PMclass StrawHat {
constructor() : Wearable(name = "Straw Hat") {
}
}
The constructor of this class gives an error: Expecting a this or super constructor call....
How do i call this type of constructors?Shawn
09/16/2018, 10:48 PMconstructor()
is used to declare secondary constructors, not primary onesShawn
09/16/2018, 10:48 PMclass StrawHat : Wearable(name = "Straw Hat")