From cf9ce6674c436734ed10a3e22ef8fe6ccf990d7e Mon Sep 17 00:00:00 2001 From: hiker Date: Wed, 28 Oct 2015 17:08:01 +1100 Subject: [PATCH] Removed unused class. --- src/network/types.hpp | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/src/network/types.hpp b/src/network/types.hpp index 3048758ce..dbb3fb84c 100644 --- a/src/network/types.hpp +++ b/src/network/types.hpp @@ -165,19 +165,4 @@ public: } // toString }; // TransportAddress -// ============================================================================ -/*! \class PlayerLogin - * \brief Contains the information needed to authenticate a user. - */ -class PlayerLogin : public CallbackObject -{ - public: - PlayerLogin() {} - ~PlayerLogin() { username.clear(); password.clear(); } - - std::string username; //!< Username of the player - std::string password; //!< Password of the player -}; // class PlayerLogin - - #endif // TYPES_HPP