In my program I have super class, which inherits from Actor and it has three subclasses. I use polymorphism there (it works like I have an empty method in super class an methods with same name in subclasses, but I call the methods in subclasses from the super class depending on the object, that does this action.
but is it possible to specify in the super class, method from which subclass I want to call?


