hmm.. so I have `abstract class Game<SELF : Gam...
# announcements
d
hmm.. so I have
abstract class Game<SELF : Game<SELF, T>, T : Plugin>
and a property in that class
val players: PlayerList<SELF>
which is defined as
abstract class PlayerList<G : Game<G, Plugin>>
. However, it tells me that PlayerList is expecting
Game<SELF, T>
and found
SELF