Added monster message handlers

This commit is contained in:
Kayne Ruse
2015-01-20 05:02:44 +11:00
parent dacb8df674
commit bd878e20ce
6 changed files with 111 additions and 15 deletions
@@ -31,18 +31,6 @@
#include <iostream>
#include <sstream>
//-------------------------
//these should've come standard
//-------------------------
bool operator==(IPaddress lhs, IPaddress rhs) {
return lhs.host == rhs.host && lhs.port == rhs.port;
}
bool operator!=(IPaddress lhs, IPaddress rhs) {
return !(lhs == rhs);
}
//-------------------------
//Public access members
//-------------------------