/*] Copyright (c) 2009-2010, Charles McGarvey [************************** **] All rights reserved. * * vi:ts=4 sw=4 tw=75 * * Distributable under the terms and conditions of the 2-clause BSD license; * see the file COPYING for a complete text of the license. * **************************************************************************/ #ifndef _MOOF_NETWORK_HH_ #define _MOOF_NETWORK_HH_ /** * \file network.hh * Builds a high-level protocol and match-making system on top of network * sockets for multiplayer support. */ #include #include namespace moof { class network_gamer { }; class network_session { public: const std::vector& gamers(); }; } // namespace moof #endif // _MOOF_NETWORK_HH_