list_node.h

Go to the documentation of this file.
00001 #pragma once
00002 
00006 struct list_node {
00007         list_node *pNext;
00008         list_node *pPrev;
00009         int value;
00010         float nPosition;
00011 };
00012 

Generated on Wed Jan 17 11:58:35 2007 for VisLuBsp1 by  doxygen 1.5.1-p1