Clarify?
What exactly cant you do with the current PerlQuest system that couldnt be fixed by the means of adding quest:: functions?
-edit-
if($class eq 'Dark Elf')
{
#insert what to do if you're a dark elf
}
should work fine, but this may not be what you were talking about?
__________________
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.
|