00001 //--------------------------------------------------------------------------------------------- 00002 // This file is a part of "DinoKod". 00003 // Copyright © 2003 Dino Productions. All Rights Reserved. 00004 // 00005 // File : ServerInfo.cpp 00006 // Author : Sebastien LEIX sebastien.leix@wanadoo.fr 00007 // Date : 09/09/2003 00008 // Modification : 00009 // 00010 //--------------------------------------------------------------------------------------------- 00011 #include "Game/ServerInfo.h" 00012 00013 //--------------------------------------------------------------------------------------------------------------------- 00014 KServerInfo::KServerInfo() 00015 { 00016 m_Players = 0; 00017 m_MaxPlayers = 0; 00018 m_Version = KMAKE_VERSION( 0, 0 ); 00019 m_ListenPort = 0; 00020 } 00021 00022 //--------------------------------------------------------------------------------------------------------------------- 00023 KServerInfo::~KServerInfo() 00024 { 00025 }
1.5.1-p1