Server is ready to send

This commit is contained in:
2016-03-27 11:04:53 +11:00
parent 4ced27a905
commit cbf8538c24
6 changed files with 26 additions and 6 deletions
+4
View File
@@ -22,6 +22,7 @@
#pragma once
#include "character_data.hpp"
#include "creature_data.hpp"
#include "serial_packet.hpp"
#include "vector2.hpp"
@@ -34,5 +35,8 @@ void pumpPacketProximity(SerialPacket* const argPacket, int roomIndex, Vector2 p
void copyCharacterToPacket(CharacterPacket* const packet, int characterIndex);
void copyCharacterToPacket(CharacterPacket* const packet, CharacterData* const characterData, int characterIndex);
void copyCreatureToPacket(CreaturePacket* const packet, CreatureData* const creatureData, int creatureIndex);
void pumpAndChangeRooms(int characterIndex, int newRoomIndex);
void pumpAndChangeRooms(CharacterData* const characterData, int newRoomIndex, int characterIndex);