summaryrefslogtreecommitdiff
path: root/src/tool/moneycount
diff options
context:
space:
mode:
Diffstat (limited to 'src/tool/moneycount')
-rw-r--r--src/tool/moneycount/athena_text.cpp4
-rw-r--r--src/tool/moneycount/athena_text.hpp (renamed from src/tool/moneycount/athena_text.h)6
-rw-r--r--src/tool/moneycount/main.cpp4
-rw-r--r--src/tool/moneycount/mmo.hpp (renamed from src/tool/moneycount/mmo.h)6
4 files changed, 10 insertions, 10 deletions
diff --git a/src/tool/moneycount/athena_text.cpp b/src/tool/moneycount/athena_text.cpp
index 59269fa..8cf5457 100644
--- a/src/tool/moneycount/athena_text.cpp
+++ b/src/tool/moneycount/athena_text.cpp
@@ -1,10 +1,10 @@
-#include "athena_text.h"
+#include "athena_text.hpp"
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
-#include "mmo.h"
+#include "mmo.hpp"
//-------------------------------------------------------------------------
// Function to set the character from the line (at read of characters file)
diff --git a/src/tool/moneycount/athena_text.h b/src/tool/moneycount/athena_text.hpp
index 705c979..e4b7025 100644
--- a/src/tool/moneycount/athena_text.h
+++ b/src/tool/moneycount/athena_text.hpp
@@ -1,6 +1,6 @@
-#ifndef ATHENA_TEXT_H
-#define ATHENA_TEXT_H
-#include "mmo.h"
+#ifndef ATHENA_TEXT_HPP
+#define ATHENA_TEXT_HPP
+#include "mmo.hpp"
int mmo_char_fromstr (char *str, struct mmo_charstatus *p);
diff --git a/src/tool/moneycount/main.cpp b/src/tool/moneycount/main.cpp
index d15f223..2c3d56c 100644
--- a/src/tool/moneycount/main.cpp
+++ b/src/tool/moneycount/main.cpp
@@ -7,8 +7,8 @@
#include <algorithm>
#include <cmath>
-#include "mmo.h"
-#include "athena_text.h"
+#include "mmo.hpp"
+#include "athena_text.hpp"
#include "inf.hpp"
#define ATHENA_FILE "save/athena.txt"
diff --git a/src/tool/moneycount/mmo.h b/src/tool/moneycount/mmo.hpp
index bd62b49..beb29c5 100644
--- a/src/tool/moneycount/mmo.h
+++ b/src/tool/moneycount/mmo.hpp
@@ -1,8 +1,8 @@
// $Id: mmo.h,v 1.3 2004/09/25 20:12:25 PoW Exp $
// Original : mmo.h 2003/03/14 12:07:02 Rev.1.7
-#ifndef _MMO_H_
-#define _MMO_H_
+#ifndef MMO_HPP
+#define MMO_HPP
#include <time.h>
@@ -305,5 +305,5 @@ enum
};
-#endif // _MMO_H_
+#endif // MMO_HPP