X-Git-Url: https://git.dogcows.com/gitweb?p=chaz%2Fyoink;a=blobdiff_plain;f=src%2Fmoof%2Fnetwork.hh;fp=src%2Fmoof%2Fnetwork.hh;h=38502d3393e0cac32c52d3e3c7c12036738874fb;hp=0000000000000000000000000000000000000000;hb=831f04d4bc19a390415ac0bbac4331c7a65509bc;hpb=299af4f2047e767e5d79501c26444473bda64c64 diff --git a/src/moof/network.hh b/src/moof/network.hh new file mode 100644 index 0000000..38502d3 --- /dev/null +++ b/src/moof/network.hh @@ -0,0 +1,44 @@ + +/*] 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_ +