You declared functions with
but defined them with:Code:void Beginning(vector<string> *Hand); void DrawForKaiba(vector<string> *Hand); void MainPhase(vector<string> *Hand);
Compiler is unable to find function you declared. You are declaring function with pointer as an argument and defined it as a reference.Code:void Beginning(vector<string> &Hand) void DrawForKaiba(vector<string> &Hand) void MainPhase(vector<string> &Hand)




Reply With Quote