How can I make an abstract class in AS3 nicely?
I\'ve tried this:
public class AnAbstractClass { public function toBeImplemented():void {
In AS3 would just use interfaces to make sure all functions are implemented at compile time. I know it different but does the trick for an example such as the one above.