Hi,
I didn't found any documentation about making associated values for enums unowned or weak. I already tries to add keywords "unowned" and "weak" but it did not work.
E.g. i want the associated value for MyEnum.Wall to be weak:
enum MyEnum {
case None
case Wall(SKNode)
}Thanks.
thomas