When calling a member function you need to use the function call syntax
()
e.g.
player1.statAssign();
clang provides a more helpful diagnostic:
main.cpp:77:13: error: reference to non-static member function must be called; did you mean to call it with no arguments?
player1.statAssign;
~~~~~~~~^~~~~~~~~~