example i have two class, robot class and bullet class.
in robot class i have method run. the problem, how i can call the method run for bullet class??
public void act()
{
shoot();
}public void act()
{
move(5);
}