summaryrefslogtreecommitdiff
path: root/src/net/tmwa/messagein.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/net/tmwa/messagein.h')
-rw-r--r--src/net/tmwa/messagein.h8
1 files changed, 2 insertions, 6 deletions
diff --git a/src/net/tmwa/messagein.h b/src/net/tmwa/messagein.h
index aa94bba1..38fbb139 100644
--- a/src/net/tmwa/messagein.h
+++ b/src/net/tmwa/messagein.h
@@ -24,7 +24,6 @@
#include "net/messagein.h"
-#include <SDL_types.h>
#include <string>
namespace TmwAthena {
@@ -37,13 +36,10 @@ namespace TmwAthena {
class MessageIn : public Net::MessageIn
{
public:
- /**
- * Constructor.
- */
MessageIn(const char *data, unsigned int length);
- int readInt16(); /**< Reads a short. */
- int readInt32(); /**< Reads a long. */
+ uint16_t readInt16();
+ uint32_t readInt32();
};
}