So this error keeps raising up after hours of trying to find whats wrong..
Error 1 error C2248: 'sf::NonCopyable::operator =' : cannot access private member declared in class 'sf::NonCopyable'
I've narrowed down to where the problem occurs through the process of guess and check(keep in mind im using MSV13 if that makes a difference)
server::server(sf::UdpSocket surver, sf::IpAddress ip,
int por, std::string stats){
serverIP = ip;
port = por;
status = stats;
serverSLSocket = surver;
specifically here:
serverSLSocket = surver;
Much help is appreciated!