UT 2003 Interview
by Steve Gibson, Sep 14, 2002 10:06am PDTThe NVidia website has an interview with the illustrious CliffyB talking about Unreal Tournament 2003 of course. Pretty interesting stuff if you havent been keeping up with the UT2003 happenings.
Resistance: Burning Skies dawns on Vita in May
Shack PSA: Mass Effect 3 demo out today
Daily Filter: The Witcher 2: Assassins of Kings Enhanced Edition, MLB 12: The Show
Cradle trailer shows off Russian indie adventure game
WoW Monopoly, StarCraft RISK announced at Toy Fair




Comments
class Node
{
public:
Node();
Node(DataType data);
private:
Node<DataType>* m_next;
Node<DataType>* m_previous;
};
template<class DataType>
Node<DataType>::Node()
{
m_next = NULL;
m_previous = NULL;
}
. . . ..