diff options
author | Yohann Ferreira <yohann_dot_ferreira_at_orange_dot_efer> | 2010-11-14 13:18:14 +0100 |
---|---|---|
committer | Yohann Ferreira <yohann_dot_ferreira_at_orange_dot_efer> | 2010-11-14 13:18:14 +0100 |
commit | 196c1c0bffa8bb594ff0a7442748030f47cc9c58 (patch) | |
tree | b60b3e3eff38907e2d8a94ce6aa7e63cd1a741c8 /src/account-server/accounthandler.cpp | |
parent | 23a94e7b154726599b9112b91ebedb32af9ff22c (diff) | |
download | manaserv-196c1c0bffa8bb594ff0a7442748030f47cc9c58.tar.gz manaserv-196c1c0bffa8bb594ff0a7442748030f47cc9c58.tar.xz manaserv-196c1c0bffa8bb594ff0a7442748030f47cc9c58.zip |
Renamed .hpp files into .h for consistency.
Also added an header to the autoattack.{h,cpp} files.
Big but trivial fix.
Diffstat (limited to 'src/account-server/accounthandler.cpp')
-rw-r--r-- | src/account-server/accounthandler.cpp | 36 |
1 files changed, 18 insertions, 18 deletions
diff --git a/src/account-server/accounthandler.cpp b/src/account-server/accounthandler.cpp index d76a6b1..e50c817 100644 --- a/src/account-server/accounthandler.cpp +++ b/src/account-server/accounthandler.cpp @@ -18,31 +18,31 @@ * along with The Mana Server. If not, see <http://www.gnu.org/licenses/>. */ -#include "account-server/accounthandler.hpp" +#include "account-server/accounthandler.h" #include "protocol.h" #include "point.h" -#include "account-server/account.hpp" -#include "account-server/accountclient.hpp" -#include "account-server/character.hpp" -#include "account-server/storage.hpp" -#include "account-server/serverhandler.hpp" -#include "chat-server/chathandler.hpp" -#include "common/configuration.hpp" -#include "common/resourcemanager.hpp" -#include "common/transaction.hpp" -#include "net/connectionhandler.hpp" -#include "net/messagein.hpp" -#include "net/messageout.hpp" -#include "net/netcomputer.hpp" +#include "account-server/account.h" +#include "account-server/accountclient.h" +#include "account-server/character.h" +#include "account-server/storage.h" +#include "account-server/serverhandler.h" +#include "chat-server/chathandler.h" +#include "common/configuration.h" +#include "common/resourcemanager.h" +#include "common/transaction.h" +#include "net/connectionhandler.h" +#include "net/messagein.h" +#include "net/messageout.h" +#include "net/netcomputer.h" #include "utils/functors.h" #include "utils/logger.h" #include "utils/stringfilter.h" -#include "utils/tokencollector.hpp" -#include "utils/tokendispenser.hpp" +#include "utils/tokencollector.h" +#include "utils/tokendispenser.h" #include "utils/sha256.h" -#include "utils/string.hpp" -#include "utils/xml.hpp" +#include "utils/string.h" +#include "utils/xml.h" static void addUpdateHost(MessageOut *msg) { |