unidade tendo início virtual
// There is not built in way for having start as virtual.
// Use a custom function inside of the latest start function
public void VStart()
{
// first start method
}
public void Start()
{
VStart();
// second start method
}
Doctor Bronze