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/serialize | |
parent | 23a94e7b154726599b9112b91ebedb32af9ff22c (diff) | |
download | manaserv-196c1c0bffa8bb594ff0a7442748030f47cc9c58.tar.gz manaserv-196c1c0bffa8bb594ff0a7442748030f47cc9c58.tar.bz2 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/serialize')
-rw-r--r-- | src/serialize/characterdata.h (renamed from src/serialize/characterdata.hpp) | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/serialize/characterdata.hpp b/src/serialize/characterdata.h index bf08dc14..f36581d0 100644 --- a/src/serialize/characterdata.hpp +++ b/src/serialize/characterdata.h @@ -18,15 +18,15 @@ * along with The Mana Server. If not, see <http://www.gnu.org/licenses/>. */ -#ifndef SERIALIZE_CHARACTERDATA_HPP -#define SERIALIZE_CHARACTERDATA_HPP +#ifndef SERIALIZE_CHARACTERDATA_H +#define SERIALIZE_CHARACTERDATA_H #include <map> #include "defines.h" -#include "common/inventorydata.hpp" -#include "net/messagein.hpp" -#include "net/messageout.hpp" +#include "common/inventorydata.h" +#include "net/messagein.h" +#include "net/messageout.h" #include "point.h" template< class T > |