From 13cc3d5aeb3b47e8b1fe97d2f16eea4d7a84a505 Mon Sep 17 00:00:00 2001 From: lotodore Date: Tue, 7 Oct 2008 20:19:41 +0000 Subject: [PATCH] Fixed linker error. --- src/net/common/netpacket.cpp | 42 ++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) diff --git a/src/net/common/netpacket.cpp b/src/net/common/netpacket.cpp index 35dc9187..db1d887d 100644 --- a/src/net/common/netpacket.cpp +++ b/src/net/common/netpacket.cpp @@ -1217,6 +1217,48 @@ NetPacket::ToNetPacketEndOfGame() const return NULL; } +const NetPacketAskKickPlayer * +NetPacket::ToNetPacketAskKickPlayer() const +{ + return NULL; +} + +const NetPacketAskKickPlayerDenied * +NetPacket::ToNetPacketAskKickPlayerDenied() const +{ + return NULL; +} + +const NetPacketStartKickPlayerPetition * +NetPacket::ToNetPacketStartKickPlayerPetition() const +{ + return NULL; +} + +const NetPacketVoteKickPlayer * +NetPacket::ToNetPacketVoteKickPlayer() const +{ + return NULL; +} + +const NetPacketVoteKickPlayerAck * +NetPacket::ToNetPacketVoteKickPlayerAck() const +{ + return NULL; +} + +const NetPacketVoteKickPlayerDenied * +NetPacket::ToNetPacketVoteKickPlayerDenied() const +{ + return NULL; +} + +const NetPacketEndKickPlayerPetition * +NetPacket::ToNetPacketEndKickPlayerPetition() const +{ + return NULL; +} + const NetPacketStatisticsChanged * NetPacket::ToNetPacketStatisticsChanged() const {