Unless the game is internet pong, Emulating an MMO Server is no easy task. Its not something that can be done in a weekend for a couple spare bucks.
__________________
namespace retval { template <class T> class ReturnValueGen { private: T x; public: ReturnValueGen() { x = 0; }; T& Generator() { return x; }; }; } int main() { retval::ReturnValueGen<int> retvalue; return retvalue.Generator(); }
C++ is wonderful.
|