Skip to content
Permalink
Browse files
possibly ready for feedback
  • Loading branch information
Nathan Brown committed Feb 14, 2020
1 parent 22597bf commit ee735956f4d7029abb7ee51acb99c3c0d95e421b
Showing 1 changed file with 13 additions and 1 deletion.
@@ -6,6 +6,18 @@
void report_to_earth(std::string fault){
std::cout << "reported to fault to earth" << std::endl;
}

void resolve_dropped_wheel(){

}

void resolve_stuck_wheel(){

}

bool determine_success(){

}
int determine_scenario(short num){
if (num > 95) return 3; //wheel power failure
if (num > 90) return 2; //wheels drops/dips (hole or cliff edge)
@@ -27,7 +39,7 @@ int main(){

}
if (scenario == 2){
std::cout << "Wheel loose" << std::endl;
std::cout << "Wheel dropped" << std::endl;
}
if (scenario == 1){
std::cout << "wheel stuck" << std::endl;

0 comments on commit ee73595

Please sign in to comment.