flash going crazy when adding two functions
- by Malfist
I'm adding these two functions to a parent class:
public function get topShot():ShotGlass {
return _topShot;
}
public function get bottomShot():ShotGlass {
return _bottomShot;
}
The calls is called BaseEntry and is a subclass of MovieClip.
Once I add these two functions, I get "The class 'class' must subclass 'flash.display.MovieClip' since it is linked to a library symbol of that type" on all the subclasses.
What's going on?