You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
420 B
C++
20 lines
420 B
C++
//
|
|
// Created by koncord on 08.03.16.
|
|
//
|
|
|
|
#include <components/openmw-mp/NetworkMessages.hpp>
|
|
#include "PacketPlayerCharGen.hpp"
|
|
|
|
mwmp::PacketPlayerCharGen::PacketPlayerCharGen(RakNet::RakPeerInterface *peer) : PlayerPacket(peer)
|
|
{
|
|
packetID = ID_PLAYER_CHARGEN;
|
|
}
|
|
|
|
void mwmp::PacketPlayerCharGen::Packet(RakNet::BitStream *bs, bool send)
|
|
{
|
|
PlayerPacket::Packet(bs, send);
|
|
|
|
RW(player->charGenState, send);
|
|
|
|
}
|