C++ allows for overloading functions - creating multiple functions of the same name with different parameters. In sgement.c, we do this a few times, i think mainly with like the "is_balancing" functions where u can pass in a specific cell, any cell, etc. We need to change this. Lets keep it simple and just take any overloaded functions and change the name. Make sure you find all refrences to these functions and make needed changes there as well
C++ allows for overloading functions - creating multiple functions of the same name with different parameters. In sgement.c, we do this a few times, i think mainly with like the "is_balancing" functions where u can pass in a specific cell, any cell, etc. We need to change this. Lets keep it simple and just take any overloaded functions and change the name. Make sure you find all refrences to these functions and make needed changes there as well